More vite improvements
This commit is contained in:
parent
25258b43a7
commit
20c81628f1
1 changed files with 3 additions and 6 deletions
|
@ -74,6 +74,7 @@ export default defineConfig({
|
|||
build: {
|
||||
minify: 'esbuild',
|
||||
cssCodeSplit: false,
|
||||
chunkSizeWarningLimit: 550,
|
||||
rollupOptions: {
|
||||
output: {
|
||||
// assetFileNames: '[hash][extname]',
|
||||
|
@ -82,12 +83,8 @@ export default defineConfig({
|
|||
assetFileNames: `[hash][extname]`,
|
||||
preserveModules: false,
|
||||
|
||||
manualChunks: (id) => {
|
||||
if (id.includes('node_modules')) {
|
||||
return 'vendor';
|
||||
} else {
|
||||
return 'app';
|
||||
}
|
||||
manualChunks: () => {
|
||||
return 'app';
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue