57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
import vue from '@vitejs/plugin-vue';
|
|
import { resolve } from 'path';
|
|
import { visualizer } from 'rollup-plugin-visualizer';
|
|
import { defineConfig } from 'vite';
|
|
import compression from 'vite-plugin-compression';
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
vue(),
|
|
compression({
|
|
verbose: true,
|
|
disable: false,
|
|
threshold: 10240,
|
|
algorithm: 'gzip',
|
|
ext: '.gz',
|
|
}),
|
|
visualizer({
|
|
open: false,
|
|
gzipSize: true,
|
|
brotliSize: true,
|
|
}),
|
|
],
|
|
resolve: {
|
|
alias: {
|
|
'@': resolve(__dirname, 'src')
|
|
}
|
|
},
|
|
server: {
|
|
host: '0.0.0.0',
|
|
allowedHosts: ['mp.jdwan.com'],
|
|
port: 3001,
|
|
open: true,
|
|
proxy: {
|
|
'/v1': 'http://localhost:8088',
|
|
}
|
|
},
|
|
build: {
|
|
sourceMap: true,
|
|
minify: 'terser',
|
|
chunkSizeWarningLimit: 1500,
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: {
|
|
'vue-vendor': ['vue', 'vue-router', 'pinia'],
|
|
'player-vendor': ['xgplayer', 'xgplayer-mp4'],
|
|
}
|
|
}
|
|
},
|
|
terserOptions: {
|
|
compress: {
|
|
drop_console: true,
|
|
drop_debugger: true,
|
|
}
|
|
}
|
|
}
|
|
});
|