mwmbl/front-end/vite.config.js

25 lines
476 B
JavaScript
Raw Normal View History

2023-10-12 16:17:42 +00:00
import legacy from '@vitejs/plugin-legacy'
2023-11-06 20:10:54 +00:00
import { resolve } from 'path'
2023-10-12 16:17:42 +00:00
export default {
root: './src',
2023-10-12 16:38:19 +00:00
base: '/static',
2023-10-12 16:17:42 +00:00
publicDir: '../assets',
build: {
2023-11-06 20:10:54 +00:00
outDir: '../dist',
2023-11-07 18:59:38 +00:00
manifest: true,
2023-11-06 20:10:54 +00:00
rollupOptions: {
input: {
index: resolve(__dirname, 'src/index.js'),
stats: resolve(__dirname, 'src/stats/index.html'),
},
},
2023-11-07 18:59:38 +00:00
minify: false,
2023-10-12 16:17:42 +00:00
},
plugins: [
legacy({
targets: ['defaults', 'not IE 11'],
}),
]
}