Template
1
0
mirror of https://github.com/un-pany/v3-admin-vite.git synced 2025-04-22 11:59:19 +08:00
v3-admin-vite/vite.config.ts

89 lines
2.8 KiB
TypeScript
Raw Normal View History

import { UserConfigExport } from "vite"
import path, { resolve } from "path"
import vue from "@vitejs/plugin-vue"
import { createSvgIconsPlugin } from "vite-plugin-svg-icons"
2022-04-20 22:40:26 +08:00
2022-04-21 00:50:12 +08:00
/** 配置项文档https://vitejs.dev/config */
export default (): UserConfigExport => {
2022-04-21 00:50:12 +08:00
return {
2022-04-21 17:34:27 +08:00
/** build 打包时根据实际情况修改 base */
2022-04-22 19:56:24 +08:00
base: "./",
2022-04-21 00:50:12 +08:00
resolve: {
alias: {
/** @ 符号指向 src 目录 */
"@": resolve(__dirname, "./src")
}
2022-04-21 00:50:12 +08:00
},
server: {
/** 是否开启 https */
https: false,
/** host 设置为 true 才可以使用 network 的形式,以 ip 访问项目 */
host: true, // host: "0.0.0.0"
/** 端口号 */
2022-04-28 15:38:49 +08:00
port: 3333,
/** 是否自动打开浏览器 */
open: false,
/** 跨域设置允许 */
cors: true,
2022-05-06 14:09:14 +08:00
/** 端口被占用时,是否直接退出 */
strictPort: false
/** 接口代理 */
2022-04-22 19:19:31 +08:00
// proxy: {
// "/mock-api": {
// target: "https://vue-typescript-admin-mock-server-armour.vercel.app/mock-api",
// ws: true,
// /** 是否允许跨域 */
// changeOrigin: true,
// rewrite: (path) => path.replace("/mock-api", "")
// }
// }
},
build: {
brotliSize: false,
/** 消除打包大小超过 500kb 警告 */
chunkSizeWarningLimit: 2000,
/** vite 2.6.x 以上需要配置 minify: terserterserOptions 才能生效 */
minify: "terser",
/** 在 build 代码时移除 console.log、debugger 和 注释 */
terserOptions: {
compress: {
drop_console: false,
drop_debugger: true,
pure_funcs: ["console.log"]
},
output: {
/** 删除注释 */
comments: false
}
},
2022-05-06 17:48:42 +08:00
/** 打包后静态资源目录 */
assetsDir: "static"
},
2022-04-21 12:22:35 +08:00
/** vite 插件 */
plugins: [
vue(),
2022-04-21 17:14:30 +08:00
/** svg */
createSvgIconsPlugin({
iconDirs: [path.resolve(process.cwd(), "src/icons/svg")],
symbolId: "icon-[dir]-[name]"
})
// AutoImport({
// dts: "./types/auto-imports.d.ts",
// /** 自动按需导入 element-plus 相关函数,比如 ElMessage */
// resolvers: [ElementPlusResolver()],
// /** 根据自动按需导入的相关 api生成 .eslintrc-auto-import.json 文件供 eslint 识别 */
// eslintrc: {
// enabled: true, // 默认 false
// filepath: "./types/.eslintrc-auto-import.json", // 默认 "./.eslintrc-auto-import.json"
// globalsPropValue: true // 默认 true (true | false | "readonly" | "readable" | "writable" | "writeable")
// }
// }),
// Components({
// dts: "./types/components.d.ts",
// /** 自动按需导入 element-plus 组件 */
// resolvers: [ElementPlusResolver()]
// })
]
2022-04-21 00:50:12 +08:00
}
}