2023-02-02 16:07:38 +08:00
|
|
|
|
import { resolve } from 'path'
|
2024-03-23 11:14:53 +08:00
|
|
|
|
import { ConfigEnv, defineConfig, loadEnv, ServerOptions, UserConfig } from 'vite'
|
2023-02-02 16:07:38 +08:00
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
|
|
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
|
|
|
|
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
|
2024-03-23 11:14:53 +08:00
|
|
|
|
import { ViteMockOptions, viteMockServe } from 'vite-plugin-mock'
|
2023-02-02 16:07:38 +08:00
|
|
|
|
import Components from 'unplugin-vue-components/vite'
|
|
|
|
|
import UnoCSS from 'unocss/vite'
|
|
|
|
|
import { presetAttributify, presetIcons, presetUno } from 'unocss'
|
|
|
|
|
import mkcert from 'vite-plugin-mkcert'
|
|
|
|
|
import AutoImport from 'unplugin-auto-import/vite'
|
|
|
|
|
import setting from './src/settings'
|
2023-06-25 14:12:13 +08:00
|
|
|
|
import ReactivityTransform from '@vue-macros/reactivity-transform/vite'
|
2023-02-02 16:07:38 +08:00
|
|
|
|
const prodMock = setting.openProdMock
|
|
|
|
|
import vitePluginSetupExtend from './src/plugins/vite-plugin-setup-extend'
|
2023-02-28 14:38:30 +08:00
|
|
|
|
import vitePluginVueSetupExtend from 'vite-plugin-vue-setup-extend'
|
2023-02-02 16:07:38 +08:00
|
|
|
|
// import { visualizer } from 'rollup-plugin-visualizer'
|
|
|
|
|
const pathSrc = resolve(__dirname, 'src')
|
2024-03-23 11:14:53 +08:00
|
|
|
|
export default defineConfig(({ command, mode }: ConfigEnv): UserConfig => {
|
2023-02-02 16:07:38 +08:00
|
|
|
|
//const env = loadEnv(mode, process.cwd(), '') //获取环境变量
|
|
|
|
|
return {
|
|
|
|
|
base: setting.viteBasePath,
|
|
|
|
|
define: {
|
|
|
|
|
//define global var
|
|
|
|
|
GLOBAL_STRING: JSON.stringify('i am global var from vite.config.js define'),
|
|
|
|
|
GLOBAL_VAR: { test: 'i am global var from vite.config.js define' }
|
|
|
|
|
},
|
|
|
|
|
clearScreen: false, //设为 false 可以避免 Vite 清屏而错过在终端中打印某些关键信息
|
|
|
|
|
server: {
|
2023-06-25 14:12:13 +08:00
|
|
|
|
//hmr: { overlay: false }, //设置 server.hmr.overlay 为 false 可以禁用开发服务器错误的屏蔽。方便错误查看
|
2023-02-02 16:07:38 +08:00
|
|
|
|
port: 5005, // 类型: number 指定服务器端口;
|
|
|
|
|
open: false, // 类型: boolean | string在服务器启动时自动在浏览器中打开应用程序;
|
|
|
|
|
host: true,
|
2024-03-23 11:14:53 +08:00
|
|
|
|
// @ts-ignore
|
2023-02-02 16:07:38 +08:00
|
|
|
|
https: false
|
|
|
|
|
},
|
|
|
|
|
preview: {
|
|
|
|
|
port: 5006,
|
|
|
|
|
host: true,
|
|
|
|
|
strictPort: true
|
|
|
|
|
},
|
|
|
|
|
plugins: [
|
2023-06-25 14:12:13 +08:00
|
|
|
|
vue(),
|
2023-02-02 16:07:38 +08:00
|
|
|
|
vueJsx(),
|
2023-06-25 14:12:13 +08:00
|
|
|
|
ReactivityTransform(),
|
2023-02-02 16:07:38 +08:00
|
|
|
|
UnoCSS({
|
|
|
|
|
presets: [presetUno(), presetAttributify(), presetIcons()]
|
|
|
|
|
}),
|
|
|
|
|
mkcert(),
|
|
|
|
|
//compatible with old browsers
|
|
|
|
|
// legacy({
|
|
|
|
|
// targets: ['chrome 52'],
|
|
|
|
|
// additionalLegacyPolyfills: ['regenerator-runtime/runtime']
|
|
|
|
|
// }),
|
|
|
|
|
createSvgIconsPlugin({
|
|
|
|
|
iconDirs: [resolve(process.cwd(), 'src/icons/common'), resolve(process.cwd(), 'src/icons/nav-bar')],
|
|
|
|
|
symbolId: 'icon-[dir]-[name]'
|
|
|
|
|
}),
|
|
|
|
|
//https://github.com/anncwb/vite-plugin-mock/blob/HEAD/README.zh_CN.md
|
|
|
|
|
viteMockServe({
|
|
|
|
|
mockPath: 'mock',
|
|
|
|
|
localEnabled: command === 'serve',
|
|
|
|
|
prodEnabled: prodMock,
|
|
|
|
|
injectCode: `
|
|
|
|
|
import { setupProdMockServer } from '../mock-prod-server';
|
|
|
|
|
setupProdMockServer();
|
|
|
|
|
`,
|
|
|
|
|
logger: true
|
2024-03-23 11:14:53 +08:00
|
|
|
|
} as ViteMockOptions),
|
2023-02-02 16:07:38 +08:00
|
|
|
|
// VueSetupExtend(),using DefineOptions instant of it
|
|
|
|
|
//https://github.com/antfu/unplugin-auto-import/blob/HEAD/src/types.ts
|
|
|
|
|
Components({
|
|
|
|
|
dirs: ['src/components', 'src/icons'],
|
|
|
|
|
extensions: ['vue'],
|
|
|
|
|
deep: true,
|
|
|
|
|
dts: './typings/components.d.ts'
|
|
|
|
|
}),
|
|
|
|
|
AutoImport({
|
|
|
|
|
imports: [
|
|
|
|
|
'vue',
|
|
|
|
|
'vue-router',
|
|
|
|
|
{
|
|
|
|
|
'pinia/dist/pinia': ['storeToRefs']
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
//配置后会自动扫描目录下的文件
|
2023-02-28 14:38:30 +08:00
|
|
|
|
dirs: ['src/hooks/**', 'src/store/**', 'src/directives/**'],
|
2023-02-02 16:07:38 +08:00
|
|
|
|
eslintrc: {
|
|
|
|
|
enabled: true, // Default `false`
|
|
|
|
|
filepath: './eslintrc/.eslintrc-auto-import.json', // Default `./.eslintrc-auto-import.json`
|
|
|
|
|
globalsPropValue: true // Default `true`, (true | false | 'readonly' | 'readable' | 'writable' | 'writeable')
|
|
|
|
|
},
|
|
|
|
|
dts: './typings/auto-imports.d.ts'
|
|
|
|
|
}),
|
|
|
|
|
|
2023-02-28 14:38:30 +08:00
|
|
|
|
vitePluginSetupExtend({ inject: { title: setting.title } }),
|
|
|
|
|
vitePluginVueSetupExtend()
|
2023-02-02 16:07:38 +08:00
|
|
|
|
//依赖分析插件
|
|
|
|
|
// visualizer({
|
|
|
|
|
// open: true,
|
|
|
|
|
// gzipSize: true,
|
|
|
|
|
// brotliSize: true
|
|
|
|
|
// })
|
|
|
|
|
],
|
|
|
|
|
build: {
|
|
|
|
|
chunkSizeWarningLimit: 10000, //消除触发警告的 chunk, 默认500k
|
|
|
|
|
assetsDir: 'static/assets',
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
output: {
|
|
|
|
|
chunkFileNames: 'static/js/[name]-[hash].js',
|
|
|
|
|
entryFileNames: 'static/js/[name]-[hash].js',
|
|
|
|
|
assetFileNames: 'static/[ext]/[name]-[hash].[ext]'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
'@/': `${pathSrc}/`,
|
|
|
|
|
'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js' //remove i18n waring
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
optimizeDeps: {
|
|
|
|
|
//include: [...optimizeDependencies,...optimizeElementPlus] //on-demand element-plus use this
|
|
|
|
|
include: ['moment-mini']
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|