-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
52 lines (50 loc) · 1.19 KB
/
vite.config.js
File metadata and controls
52 lines (50 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import { defineConfig } from 'vite'
import { resolve } from 'path'
import react from '@vitejs/plugin-react'
const isProduction = process.env.NODE_ENV === 'production'
export default defineConfig({
root: 'frontend',
plugins: [react()],
envDir: '../',
build: {
outDir: '../backend/src/main/resources/static',
emptyOutDir: false,
sourcemap: !isProduction,
minify: isProduction ? 'terser' : false,
rollupOptions: {
input: {
main: resolve(__dirname, 'frontend/index.html')
},
output: {
entryFileNames: 'assets/[name]-[hash].js',
chunkFileNames: 'assets/[name]-[hash].js',
assetFileNames: ({ name }) => {
if (name && name.endsWith('.css')) {
return 'assets/[name]-[hash][extname]'
}
return 'assets/[name]-[hash][extname]'
}
}
},
terserOptions: {
compress: {
drop_console: isProduction,
drop_debugger: isProduction
}
}
},
server: {
port: 3000,
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true
}
}
},
resolve: {
alias: {
'@': resolve(__dirname, 'frontend/src')
}
}
})