-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.mts
63 lines (60 loc) · 1.52 KB
/
vite.config.mts
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
// Plugins
import vue from '@vitejs/plugin-vue'
import vuetify, { transformAssetUrls } from 'vite-plugin-vuetify'
// Utilities
import { defineConfig } from 'vite'
import { fileURLToPath, URL } from 'node:url'
import { randomBytes } from 'crypto';
function getUniqueFileName(template) {
if (template.includes('.js') || template.includes('.css')) {
const hash = randomBytes(8).toString('hex');
return template.replace('[name]', hash);
}
return template;
}
export default defineConfig({
base: '',
plugins: [
vue({
template: { transformAssetUrls },
}),
vuetify({
autoImport: true,
styles: {
configFile: 'src/styles/settings.scss',
},
})
],
build: {
manifest: false,
outDir: 'dist',
chunkSizeWarningLimit: 1600,
rollupOptions: {
output: {
inlineDynamicImports: true,
entryFileNames: getUniqueFileName('assets/[name].js'),
chunkFileNames: getUniqueFileName('assets/[name].js'),
assetFileNames: (assetInfo) => {
if (assetInfo.name == "index.css") return getUniqueFileName('assets/[name].css');
return 'assets/' + assetInfo.name;
},
},
}
},
define: { 'process.env': {} },
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
},
extensions: ['.js', '.json', '.jsx', '.mjs', '.ts', '.tsx', '.vue'],
},
server: {
port: 3000,
proxy: {
'/app/api': {
target: 'http://localhost:2095',
changeOrigin: true,
},
},
}
})