2021-01-09 23:28:52 +08:00
|
|
|
import type { UserConfig, ConfigEnv } from 'vite';
|
2020-09-28 20:19:10 +08:00
|
|
|
import { resolve } from 'path';
|
2021-01-09 23:28:52 +08:00
|
|
|
import vue from '@vitejs/plugin-vue';
|
|
|
|
import vueJsx from '@vitejs/plugin-vue-jsx';
|
|
|
|
import legacy from '@vitejs/plugin-legacy';
|
2020-09-28 20:19:10 +08:00
|
|
|
|
2020-12-22 22:13:03 +08:00
|
|
|
import { loadEnv } from 'vite';
|
|
|
|
|
2020-10-27 21:21:14 +08:00
|
|
|
import { modifyVars } from './build/config/lessModifyVars';
|
|
|
|
import { createProxy } from './build/vite/proxy';
|
2020-11-19 23:01:27 +08:00
|
|
|
|
2020-12-22 22:13:03 +08:00
|
|
|
import { wrapperEnv } from './build/utils';
|
2020-09-28 20:19:10 +08:00
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
import { createVitePlugins } from './build/vite/plugin';
|
2020-10-13 01:40:21 +08:00
|
|
|
|
|
|
|
const pkg = require('./package.json');
|
2020-09-28 20:19:10 +08:00
|
|
|
|
|
|
|
function pathResolve(dir: string) {
|
|
|
|
return resolve(__dirname, '.', dir);
|
|
|
|
}
|
2020-10-10 21:28:43 +08:00
|
|
|
|
2020-12-01 21:02:37 +08:00
|
|
|
const root: string = process.cwd();
|
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
export default ({ command, mode }: ConfigEnv): UserConfig => {
|
2020-12-22 22:13:03 +08:00
|
|
|
const env = loadEnv(mode, root);
|
|
|
|
const viteEnv = wrapperEnv(env);
|
2021-01-09 23:28:52 +08:00
|
|
|
const { VITE_PORT, VITE_PUBLIC_PATH, VITE_PROXY, VITE_DROP_CONSOLE, VITE_LEGACY } = viteEnv;
|
2020-12-22 22:13:03 +08:00
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
const isBuild = command === 'build';
|
2020-12-22 22:13:03 +08:00
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
return {
|
|
|
|
root,
|
|
|
|
alias: {
|
|
|
|
'/@/': `${pathResolve('src')}/`,
|
|
|
|
},
|
|
|
|
server: {
|
|
|
|
port: VITE_PORT,
|
|
|
|
proxy: createProxy(VITE_PROXY),
|
|
|
|
hmr: {
|
|
|
|
overlay: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
build: {
|
|
|
|
base: VITE_PUBLIC_PATH,
|
|
|
|
terserOptions: {
|
|
|
|
compress: {
|
|
|
|
keep_infinity: true,
|
|
|
|
drop_console: VITE_DROP_CONSOLE,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// minify: 'esbuild',
|
|
|
|
rollupOptions: {
|
|
|
|
output: {
|
|
|
|
compact: true,
|
|
|
|
},
|
2020-12-22 22:13:03 +08:00
|
|
|
},
|
2021-01-11 00:16:44 +08:00
|
|
|
commonjsOptions: {
|
2021-01-19 22:33:18 +08:00
|
|
|
ignore: [
|
|
|
|
// xlsx
|
|
|
|
'fs',
|
|
|
|
'crypto',
|
|
|
|
'stream',
|
|
|
|
],
|
2021-01-11 00:16:44 +08:00
|
|
|
},
|
2020-12-22 22:13:03 +08:00
|
|
|
},
|
|
|
|
define: {
|
|
|
|
__VERSION__: pkg.version,
|
|
|
|
// setting vue-i18-next
|
|
|
|
// Suppress warning
|
|
|
|
__VUE_I18N_LEGACY_API__: false,
|
|
|
|
__VUE_I18N_FULL_INSTALL__: false,
|
|
|
|
__INTLIFY_PROD_DEVTOOLS__: false,
|
|
|
|
},
|
2021-01-09 23:28:52 +08:00
|
|
|
css: {
|
|
|
|
preprocessorOptions: {
|
|
|
|
less: {
|
|
|
|
modifyVars: {
|
2021-01-11 00:16:44 +08:00
|
|
|
// reference: Avoid repeated references
|
2021-01-09 23:28:52 +08:00
|
|
|
hack: `true; @import (reference) "${resolve('src/design/config.less')}";`,
|
|
|
|
...modifyVars,
|
|
|
|
},
|
|
|
|
javascriptEnabled: true,
|
2020-12-29 23:37:40 +08:00
|
|
|
},
|
2020-12-22 22:13:03 +08:00
|
|
|
},
|
2020-10-16 22:03:44 +08:00
|
|
|
},
|
2020-12-22 22:13:03 +08:00
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
plugins: [
|
|
|
|
vue(),
|
|
|
|
vueJsx(),
|
|
|
|
...(VITE_LEGACY && isBuild ? [legacy()] : []),
|
|
|
|
...createVitePlugins(viteEnv, isBuild, mode),
|
2020-11-23 00:35:15 +08:00
|
|
|
],
|
2020-12-01 21:02:37 +08:00
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
optimizeDeps: {
|
2021-01-11 00:16:44 +08:00
|
|
|
include: [
|
2021-01-18 23:37:36 +08:00
|
|
|
'moment',
|
2021-01-12 06:28:33 +08:00
|
|
|
'@ant-design/icons-vue',
|
2021-01-17 22:36:06 +08:00
|
|
|
'echarts/map/js/china',
|
2021-01-11 00:16:44 +08:00
|
|
|
'ant-design-vue/es/locale/zh_CN',
|
2021-01-18 23:37:36 +08:00
|
|
|
'moment/locale/zh-cn',
|
2021-01-11 00:16:44 +08:00
|
|
|
'ant-design-vue/es/locale/en_US',
|
|
|
|
],
|
2020-12-22 22:13:03 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|