You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.6 KiB
TypeScript

1 year ago
import { defineConfig, loadEnv } from 'vite';
import { createViteProxy, getRootPath, getSrcPath, setupVitePlugins, viteDefine } from './build';
import { getServiceEnvConfig } from './.env-config';
export default defineConfig(configEnv => {
const viteEnv = loadEnv(configEnv.mode, process.cwd()) as unknown as ImportMetaEnv;
const rootPath = getRootPath();
const srcPath = getSrcPath();
const isOpenProxy = viteEnv.VITE_HTTP_PROXY === 'Y';
const envConfig = getServiceEnvConfig(viteEnv);
return {
base: viteEnv.VITE_BASE_URL,
resolve: {
alias: {
'~': rootPath,
'@': srcPath
}
},
define: viteDefine,
plugins: setupVitePlugins(viteEnv),
css: {
preprocessorOptions: {
scss: {
additionalData: `@use "./src/styles/scss/global.scss" as *;`
}
}
},
// createViteProxy(isOpenProxy, envConfig),
server: {
host: '0.0.0.0',
port: 3200,
open: true,
proxy: createViteProxy(isOpenProxy, envConfig)
},
optimizeDeps: {
include: [
'@antv/data-set',
'@antv/g2',
'@better-scroll/core',
'echarts',
'swiper',
'swiper/vue',
'vditor',
'wangeditor',
'xgplayer'
]
},
build: {
reportCompressedSize: false,
sourcemap: false,
minify: 'terser',
// terserOptions: {
// compress: {
// drop_console: true,
// drop_debugger : true
// }
// },
commonjsOptions: {
ignoreTryCatch: false
}
}
};
});