127 lines
4.0 KiB
Go
127 lines
4.0 KiB
Go
import vue from "@vitejs/plugin-vue";
|
|
|
|
import { ConfigEnv, defineConfig, loadEnv, UserConfig } from "vite";
|
|
|
|
import AutoImport from "unplugin-auto-import/vite";
|
|
import Components from "unplugin-vue-components/vite";
|
|
import { ElementPlusResolver } from "unplugin-vue-components/resolvers";
|
|
|
|
import Icons from "unplugin-icons/vite";
|
|
import IconsResolver from "unplugin-icons/resolver";
|
|
|
|
import { createSvgIconsPlugin } from "vite-plugin-svg-icons";
|
|
|
|
import UnoCSS from "unocss/vite";
|
|
|
|
import path from "path";
|
|
|
|
const pathSrc = path.resolve(__dirname, "src");
|
|
|
|
// eslint-disable-next-line no-control-regex
|
|
const INVALID_CHAR_REGEX = /[\u0000-\u001F"#$&*+,:;<=>?[\]^`{|}\u007F]/g;
|
|
const DRIVE_LETTER_REGEX = /^[a-z]:/i;
|
|
|
|
import { dynamicBase } from "vite-plugin-dynamic-base";
|
|
|
|
export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
|
|
const env = loadEnv(mode, process.cwd());
|
|
return {
|
|
base: mode === "production" ? "/__dynamic_base__/" : "/",
|
|
resolve: {
|
|
alias: {
|
|
"@": pathSrc,
|
|
},
|
|
},
|
|
css: {
|
|
// CSS 预处理器
|
|
preprocessorOptions: {
|
|
//define global scss variable
|
|
scss: {
|
|
javascriptEnabled: true,
|
|
additionalData: `
|
|
@use "@/styles/variables.scss" as *;
|
|
`,
|
|
},
|
|
},
|
|
},
|
|
server: {
|
|
host: "0.0.0.0",
|
|
port: Number(env.VITE_APP_PORT),
|
|
open: true, // 运行是否自动打开浏览器
|
|
proxy: {
|
|
// 反向代理解决跨域
|
|
[env.VITE_APP_BASE_API]: {
|
|
target: "http://127.0.0.1:8081",
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
dynamicBase({}),
|
|
vue(),
|
|
UnoCSS({
|
|
/* options */
|
|
}),
|
|
AutoImport({
|
|
// 自动导入 Vue 相关函数,如:ref, reactive, toRef 等
|
|
imports: ["vue", "@vueuse/core"],
|
|
eslintrc: {
|
|
enabled: false, // Default `false`
|
|
filepath: "./.eslintrc-auto-import.json", // Default `./.eslintrc-auto-import.json`
|
|
globalsPropValue: true, // Default `true`, (true | false | 'readonly' | 'readable' | 'writable' | 'writeable')
|
|
},
|
|
resolvers: [
|
|
// 自动导入 Element Plus 相关函数,如:ElMessage, ElMessageBox... (带样式)
|
|
ElementPlusResolver(),
|
|
// 自动导入图标组件
|
|
IconsResolver({}),
|
|
],
|
|
vueTemplate: true, // 是否在 vue 模板中自动导入
|
|
dts: path.resolve(pathSrc, "types", "auto-imports.d.ts"), // 自动导入组件类型声明文件位置,默认根目录; false 关闭自动生成
|
|
}),
|
|
|
|
Components({
|
|
resolvers: [
|
|
// 自动注册图标组件
|
|
IconsResolver({
|
|
enabledCollections: ["ep"], //@iconify-json/ep 是 Element Plus 的图标库
|
|
}),
|
|
// 自动导入 Element Plus 组件
|
|
ElementPlusResolver(),
|
|
],
|
|
dts: path.resolve(pathSrc, "types", "components.d.ts"), // 自动导入组件类型声明文件位置,默认根目录; false 关闭自动生成
|
|
}),
|
|
|
|
Icons({
|
|
// 自动安装图标库
|
|
autoInstall: true,
|
|
}),
|
|
|
|
createSvgIconsPlugin({
|
|
// 指定需要缓存的图标文件夹
|
|
iconDirs: [path.resolve(pathSrc, "assets/icons")],
|
|
// 指定symbolId格式
|
|
symbolId: "icon-[dir]-[name]",
|
|
}),
|
|
],
|
|
build: {
|
|
rollupOptions: {
|
|
output: {
|
|
sanitizeFileName(name: string): string {
|
|
// https://github.com/rollup/rollup/blob/master/src/utils/sanitizeFileName.ts
|
|
const match = DRIVE_LETTER_REGEX.exec(name);
|
|
const driveLetter = match ? match[0] : "";
|
|
|
|
// A `:` is only allowed as part of a windows drive letter (ex: C:\foo)
|
|
// Otherwise, avoid them because they can refer to NTFS alternate data streams.
|
|
return (
|
|
driveLetter +
|
|
name.slice(driveLetter.length).replace(INVALID_CHAR_REGEX, "")
|
|
);
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
});
|