-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
66 lines (63 loc) · 1.65 KB
/
vite.config.ts
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
base: '/admin',
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
},
build: {
outDir: './dist/admin',
assetsInlineLimit: 6 * 1024,
cssCodeSplit: true,
minify: 'terser',
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true
},
output: {
comments: false,
beautify: false
}
},
rollupOptions: {
output: {
manualChunks(id) {
if (
id.includes('node_modules/vue') ||
id.includes('node_modules/vue-router') ||
id.includes('node_modules/pinia')
) {
return 'vendor'
}
if (id.includes('node_modules/vue-i18n')) {
return 'vue-i18n'
}
},
entryFileNames: 'assets/js/[name].[hash].js',
chunkFileNames: 'assets/js/[name].[hash].js',
assetFileNames: (assetInfo) => {
if (/\.(png|jpe?g|gif|webp)$/i.test(assetInfo.name!)) {
return 'assets/img/[name].[hash].[ext]'
} else if (/\.(woff2?|ttf|eot|otf)$/i.test(assetInfo.name!)) {
return 'assets/font/[name].[hash].[ext]'
} else if (/\.(css)$/i.test(assetInfo.name!)) {
return 'assets/css/[name].[hash].css'
} else {
return 'assets/other/[name].[hash].[ext]'
}
}
}
}
},
server: {
host: '0.0.0.0',
port: 3000,
open: true
}
})