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'
|
2024-04-25 08:48:20 +08:00
|
|
|
|
import vue, { parseVueRequest } from '@vitejs/plugin-vue'
|
2023-02-02 16:07:38 +08:00
|
|
|
|
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 } }),
|
2024-04-25 08:48:20 +08:00
|
|
|
|
vitePluginVueSetupExtend(),
|
2023-02-02 16:07:38 +08:00
|
|
|
|
//依赖分析插件
|
|
|
|
|
// visualizer({
|
|
|
|
|
// open: true,
|
|
|
|
|
// gzipSize: true,
|
|
|
|
|
// brotliSize: true
|
|
|
|
|
// })
|
2024-04-25 08:48:20 +08:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
name: 'index-transform',
|
|
|
|
|
transform(code, id) {
|
|
|
|
|
const { filename } = parseVueRequest(id)
|
|
|
|
|
if (!filename.includes('vite/preload-helper')) return code
|
|
|
|
|
const fn = 'export const __vitePreload'
|
|
|
|
|
const index = code.indexOf(fn)
|
|
|
|
|
const head = code
|
|
|
|
|
.slice(0, index)
|
|
|
|
|
.split(';')
|
|
|
|
|
.map((it) => `${it};`)
|
|
|
|
|
const preload = code.slice(index)
|
|
|
|
|
const assetsURLIndex = head.findIndex((it) => it.startsWith('const assetsURL'))
|
|
|
|
|
let assetsURL = head[assetsURLIndex]
|
|
|
|
|
assetsURL = assetsURL.replace(' return ', " return (window.NGINX_BASE_URL || '') + ")
|
|
|
|
|
head[assetsURLIndex] = assetsURL
|
|
|
|
|
return [...head, preload].join('\n')
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-02-02 16:07:38 +08:00
|
|
|
|
],
|
|
|
|
|
build: {
|
|
|
|
|
chunkSizeWarningLimit: 10000, //消除触发警告的 chunk, 默认500k
|
|
|
|
|
assetsDir: 'static/assets',
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
output: {
|
2024-04-25 08:48:35 +08:00
|
|
|
|
chunkFileNames: 'static/js/chunk-[hash].js',
|
|
|
|
|
entryFileNames: 'static/js/index.js',
|
|
|
|
|
assetFileNames: 'static/[ext]/[hash].[ext]'
|
2023-02-02 16:07:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
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']
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|