|
- import vue from "@vitejs/plugin-vue";
- import { resolve } from "path";
- import { defineConfig, loadEnv, UserConfig, UserConfigExport } from "vite";
- import html from "vite-plugin-html";
- import tsconfigPaths from "vite-tsconfig-paths";
- import { createSvgIconsPlugin } from "vite-plugin-svg-icons";
-
- export default (config: UserConfig): UserConfigExport => {
- const mode = config.mode as string;
- return defineConfig({
- base: "./",
- plugins: [
- vue(),
- html({
- inject: {
- injectData: {
- apiURL: loadEnv(mode, process.cwd()).VITE_APP_API,
- title: ""
- }
- },
- minify: true
- }),
- tsconfigPaths(),
- createSvgIconsPlugin({
- iconDirs: [resolve(__dirname, "src/assets/icons/svg")],
- symbolId: "icon-[dir]-[name]"
- })
- ],
- build: {
- chunkSizeWarningLimit: 1024,
- commonjsOptions: {
- include: /node_modules|lib/
- },
- rollupOptions: {
- output: {
- manualChunks: {
- quill: ["quill"],
- lodash: ["lodash"],
- vlib: ["vue", "vue-router", "element-plus"]
- }
- }
- }
- },
- resolve: {
- alias: {
- // 配置别名
- "@": resolve(__dirname, "./src")
- }
- },
- server: {
- open: true, // 自动启动浏览器
- host: "0.0.0.0", // localhost
- port: 8001, // 端口号
- https: false,
- hmr: true
- }
- });
- };
|