2024-01-05 21:02:11 +08:00
|
|
|
|
import { ConfigEnv, defineConfig, loadEnv } from 'vite'
|
2023-12-17 02:21:55 +08:00
|
|
|
|
import vue from '@vitejs/plugin-vue'
|
2023-12-16 03:56:10 +08:00
|
|
|
|
import AutoImport from 'unplugin-auto-import/vite' //自动导入
|
|
|
|
|
import Components from 'unplugin-vue-components/vite' //组件注册
|
2023-12-17 02:21:55 +08:00
|
|
|
|
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers'
|
2023-12-16 03:56:10 +08:00
|
|
|
|
import { getRootPath, getSrcPath } from './build/config/getPath'
|
2023-12-17 02:21:55 +08:00
|
|
|
|
import vueJsx from '@vitejs/plugin-vue-jsx'
|
2024-01-10 02:18:32 +08:00
|
|
|
|
import unocss from '@unocss/vite'
|
2024-03-06 08:03:27 +08:00
|
|
|
|
import terser from '@rollup/plugin-terser'
|
2023-12-15 20:25:35 +08:00
|
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
2024-01-05 21:02:11 +08:00
|
|
|
|
export default defineConfig(({ mode }: ConfigEnv) => {
|
2023-12-16 03:56:10 +08:00
|
|
|
|
// 获取当前环境的配置,如何设置第三个参数则加载所有变量,而不是以“VITE_”前缀的变量
|
|
|
|
|
const config = loadEnv(mode, '/')
|
2023-12-17 02:21:55 +08:00
|
|
|
|
console.log(config)
|
2023-12-16 03:56:10 +08:00
|
|
|
|
return {
|
|
|
|
|
resolve: {
|
|
|
|
|
alias: {
|
|
|
|
|
// 配置路径别名@
|
|
|
|
|
'@': getSrcPath(),
|
|
|
|
|
// 配置路径别名~(根路径)
|
|
|
|
|
'~': getRootPath()
|
|
|
|
|
}
|
2023-12-15 20:25:35 +08:00
|
|
|
|
},
|
2024-01-21 09:59:18 +08:00
|
|
|
|
css: {
|
|
|
|
|
preprocessorOptions: {
|
|
|
|
|
scss: {
|
|
|
|
|
additionalData: '@import "./src/styles/scss/global/variable.scss";' // 加载全局样式,使用scss特性
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-01-15 06:14:04 +08:00
|
|
|
|
define: {
|
|
|
|
|
// enable hydration mismatch details in production build 3.4新增水化不匹配的警告
|
|
|
|
|
__VUE_PROD_HYDRATION_MISMATCH_DETAILS__: 'true'
|
|
|
|
|
},
|
2023-12-16 03:56:10 +08:00
|
|
|
|
plugins: [
|
|
|
|
|
/**
|
|
|
|
|
* !实验性功能
|
|
|
|
|
* 开启defineProps解构语法
|
|
|
|
|
* */
|
2024-03-17 00:00:50 +08:00
|
|
|
|
vue({ script: { propsDestructure: true } }),
|
2023-12-17 02:21:55 +08:00
|
|
|
|
vueJsx(), // 开启jsx功能
|
2024-01-10 02:18:32 +08:00
|
|
|
|
unocss(), // 开启unocss
|
2023-12-16 03:56:10 +08:00
|
|
|
|
AutoImport({
|
|
|
|
|
imports: ['vue', { 'naive-ui': ['useDialog', 'useMessage', 'useNotification', 'useLoadingBar'] }],
|
|
|
|
|
dts: 'src/typings/auto-imports.d.ts'
|
|
|
|
|
}),
|
|
|
|
|
/*自动导入组件,但是不会自动导入jsx和tsx*/
|
|
|
|
|
Components({
|
2024-01-10 02:18:32 +08:00
|
|
|
|
dirs: ['src/components/**'], // 设置需要扫描的目录
|
2023-12-16 03:56:10 +08:00
|
|
|
|
resolvers: [NaiveUiResolver()],
|
|
|
|
|
dts: 'src/typings/components.d.ts'
|
2024-03-06 08:03:27 +08:00
|
|
|
|
}),
|
|
|
|
|
/* 压缩代码 */
|
|
|
|
|
terser({
|
|
|
|
|
format: {
|
|
|
|
|
comments: false // 移除所有注释
|
|
|
|
|
},
|
|
|
|
|
compress: {
|
|
|
|
|
drop_console: true, // 移除 console.log
|
|
|
|
|
drop_debugger: true // 移除 debugger
|
|
|
|
|
}
|
2023-12-17 02:21:55 +08:00
|
|
|
|
})
|
2023-12-16 03:56:10 +08:00
|
|
|
|
],
|
2024-03-06 08:03:27 +08:00
|
|
|
|
build: {
|
|
|
|
|
cssCodeSplit: true, // 启用 CSS 代码拆分
|
|
|
|
|
minify: 'terser', // 指定使用哪种混淆器
|
|
|
|
|
// chunk 大小警告的限制(kb)
|
|
|
|
|
chunkSizeWarningLimit: 1200,
|
|
|
|
|
// 分包配置
|
|
|
|
|
rollupOptions: {
|
|
|
|
|
output: {
|
|
|
|
|
chunkFileNames: 'static/js/[name]-[hash].js', // 引入文件名的名称
|
|
|
|
|
entryFileNames: 'static/js/[name]-[hash].js', // 包的入口文件名称
|
|
|
|
|
assetFileNames: 'static/[ext]/[name]-[hash].[ext]', // 资源文件像 字体,图片等
|
|
|
|
|
// 最小化拆分包
|
|
|
|
|
manualChunks(id) {
|
|
|
|
|
if (id.includes('node_modules')) {
|
2024-03-17 00:00:50 +08:00
|
|
|
|
return 'invariable'
|
2024-03-06 08:03:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2023-12-16 03:56:10 +08:00
|
|
|
|
|
|
|
|
|
// Vite options tailored for Tauri development and only applied in `tauri dev` or `tauri build`
|
|
|
|
|
//
|
|
|
|
|
// 1. prevent vite from obscuring rust errors
|
|
|
|
|
clearScreen: false,
|
|
|
|
|
// 2. tauri expects a fixed port, fail if that port is not available
|
|
|
|
|
server: {
|
|
|
|
|
host: '0.0.0.0',
|
|
|
|
|
port: 6130,
|
|
|
|
|
strictPort: true,
|
|
|
|
|
watch: {
|
|
|
|
|
// 3. tell vite to ignore watching `src-tauri`
|
2023-12-17 02:21:55 +08:00
|
|
|
|
ignored: ['**/src-tauri/**']
|
|
|
|
|
}
|
2023-12-16 03:56:10 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
})
|