2021-01-09 23:28:52 +08:00
|
|
|
import type { UserConfig, ConfigEnv } from 'vite';
|
2020-09-28 20:19:10 +08:00
|
|
|
|
2020-12-22 22:13:03 +08:00
|
|
|
import { loadEnv } from 'vite';
|
2021-02-09 23:47:14 +08:00
|
|
|
import { resolve } from 'path';
|
2020-12-22 22:13:03 +08:00
|
|
|
|
2021-02-03 23:52:55 +08:00
|
|
|
import { generateModifyVars } from './build/config/themeConfig';
|
2020-10-27 21:21:14 +08:00
|
|
|
import { createProxy } from './build/vite/proxy';
|
2020-12-22 22:13:03 +08:00
|
|
|
import { wrapperEnv } from './build/utils';
|
2021-01-09 23:28:52 +08:00
|
|
|
import { createVitePlugins } from './build/vite/plugin';
|
2021-02-08 23:59:47 +08:00
|
|
|
import { OUTPUT_DIR } from './build/constant';
|
2020-10-13 01:40:21 +08:00
|
|
|
|
2020-09-28 20:19:10 +08:00
|
|
|
function pathResolve(dir: string) {
|
|
|
|
return resolve(__dirname, '.', dir);
|
|
|
|
}
|
2020-10-10 21:28:43 +08:00
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
export default ({ command, mode }: ConfigEnv): UserConfig => {
|
2021-02-09 23:47:14 +08:00
|
|
|
const root = process.cwd();
|
|
|
|
|
2020-12-22 22:13:03 +08:00
|
|
|
const env = loadEnv(mode, root);
|
2021-02-09 23:47:14 +08:00
|
|
|
|
|
|
|
// The boolean type read by loadEnv is a string. This function can be converted to boolean type
|
2020-12-22 22:13:03 +08:00
|
|
|
const viteEnv = wrapperEnv(env);
|
2021-02-09 23:47:14 +08:00
|
|
|
|
2021-03-02 06:59:38 +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 {
|
2021-01-23 21:10:00 +08:00
|
|
|
base: VITE_PUBLIC_PATH,
|
2021-01-09 23:28:52 +08:00
|
|
|
root,
|
2021-02-13 00:26:41 +08:00
|
|
|
resolve: {
|
|
|
|
alias: [
|
|
|
|
{
|
|
|
|
// /@/xxxx => src/xxx
|
|
|
|
find: /^\/@\//,
|
|
|
|
replacement: pathResolve('src') + '/',
|
|
|
|
},
|
2021-02-26 20:09:24 +08:00
|
|
|
{
|
2021-03-03 22:52:25 +08:00
|
|
|
// /#/xxxx => types/xxx
|
2021-02-26 20:09:24 +08:00
|
|
|
find: /^\/#\//,
|
|
|
|
replacement: pathResolve('types') + '/',
|
|
|
|
},
|
2021-02-13 00:26:41 +08:00
|
|
|
],
|
|
|
|
},
|
2021-01-09 23:28:52 +08:00
|
|
|
server: {
|
|
|
|
port: VITE_PORT,
|
2021-02-09 23:47:14 +08:00
|
|
|
// Load proxy configuration from .env
|
2021-01-09 23:28:52 +08:00
|
|
|
proxy: createProxy(VITE_PROXY),
|
|
|
|
hmr: {
|
|
|
|
overlay: true,
|
|
|
|
},
|
|
|
|
},
|
2021-02-04 21:46:35 +08:00
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
build: {
|
2021-03-03 22:52:25 +08:00
|
|
|
cssCodeSplit: false,
|
2021-03-02 20:54:15 +08:00
|
|
|
// minify: 'esbuild',
|
2021-02-08 23:59:47 +08:00
|
|
|
outDir: OUTPUT_DIR,
|
2021-01-21 22:58:38 +08:00
|
|
|
polyfillDynamicImport: VITE_LEGACY,
|
2021-01-09 23:28:52 +08:00
|
|
|
terserOptions: {
|
|
|
|
compress: {
|
|
|
|
keep_infinity: true,
|
2021-02-09 23:47:14 +08:00
|
|
|
// Used to delete console in production environment
|
2021-01-09 23:28:52 +08:00
|
|
|
drop_console: VITE_DROP_CONSOLE,
|
|
|
|
},
|
2020-12-22 22:13:03 +08:00
|
|
|
},
|
2021-02-09 23:47:14 +08:00
|
|
|
// Turning off brotliSize display can slightly reduce packaging time
|
2021-02-04 21:46:35 +08:00
|
|
|
brotliSize: false,
|
2021-02-06 22:54:52 +08:00
|
|
|
chunkSizeWarningLimit: 1200,
|
2020-12-22 22:13:03 +08:00
|
|
|
},
|
|
|
|
define: {
|
|
|
|
// 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-02-09 23:47:14 +08:00
|
|
|
// Used for global import to avoid the need to import each style file separately
|
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')}";`,
|
2021-02-03 23:52:55 +08:00
|
|
|
...generateModifyVars(),
|
2021-01-09 23:28:52 +08:00
|
|
|
},
|
|
|
|
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-02-09 23:47:14 +08:00
|
|
|
// The vite plugin used by the project. The quantity is large, so it is separately extracted and managed
|
|
|
|
plugins: createVitePlugins(viteEnv, isBuild),
|
2020-12-01 21:02:37 +08:00
|
|
|
|
2021-01-09 23:28:52 +08:00
|
|
|
optimizeDeps: {
|
2021-02-09 23:47:14 +08:00
|
|
|
// @iconify/iconify: The dependency is dynamically and virtually loaded by @purge-icons/generated, so it needs to be specified explicitly
|
2021-02-28 23:05:37 +08:00
|
|
|
include: [
|
|
|
|
'@iconify/iconify',
|
|
|
|
'ant-design-vue/es/locale/zh_CN',
|
|
|
|
'moment/dist/locale/zh-cn',
|
|
|
|
'ant-design-vue/es/locale/en_US',
|
|
|
|
'moment/dist/locale/eu',
|
|
|
|
],
|
2021-02-13 00:26:41 +08:00
|
|
|
exclude: ['vue-demi'],
|
2020-12-22 22:13:03 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|