123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- import { resolve } from "path";
- import vue from "@vitejs/plugin-vue";
- import svgLoader from "vite-svg-loader";
- import vueJsx from "@vitejs/plugin-vue-jsx";
- import { warpperEnv, regExps } from "./build";
- import { viteMockServe } from "vite-plugin-mock";
- import styleImport from "vite-plugin-style-import";
- import ElementPlus from "unplugin-element-plus/vite";
- import { UserConfigExport, ConfigEnv, loadEnv } from "vite";
- import themePreprocessorPlugin from "@zougt/vite-plugin-theme-preprocessor";
- const root: string = process.cwd();
- const pathResolve = (dir: string): string => {
- return resolve(__dirname, ".", dir);
- };
- const alias: Record<string, string> = {
- "/@": pathResolve("src"),
- "@build": pathResolve("build"),
-
- "vue-i18n": "vue-i18n/dist/vue-i18n.cjs.js"
- };
- export default ({ command, mode }: ConfigEnv): UserConfigExport => {
- const {
- VITE_PORT,
- VITE_PUBLIC_PATH,
- VITE_PROXY_DOMAIN,
- VITE_PROXY_DOMAIN_REAL
- } = warpperEnv(loadEnv(mode, root));
- const prodMock = true;
- return {
- base: VITE_PUBLIC_PATH,
- root,
- resolve: {
- alias
- },
-
- server: {
-
- https: false,
-
- port: VITE_PORT,
- host: "0.0.0.0",
-
- proxy:
- VITE_PROXY_DOMAIN_REAL.length > 0
- ? {
- [VITE_PROXY_DOMAIN]: {
- target: VITE_PROXY_DOMAIN_REAL,
-
- changeOrigin: true,
- rewrite: (path: string) => regExps(path, VITE_PROXY_DOMAIN)
- }
- }
- : null
- },
- plugins: [
- vue(),
-
- vueJsx(),
-
- themePreprocessorPlugin({
- scss: {
- multipleScopeVars: [
- {
- scopeName: "layout-theme-default",
- path: pathResolve("src/layout/theme/default-vars.scss")
- },
- {
- scopeName: "layout-theme-light",
- path: pathResolve("src/layout/theme/light-vars.scss")
- },
- {
- scopeName: "layout-theme-dusk",
- path: pathResolve("src/layout/theme/dusk-vars.scss")
- },
- {
- scopeName: "layout-theme-volcano",
- path: pathResolve("src/layout/theme/volcano-vars.scss")
- },
- {
- scopeName: "layout-theme-yellow",
- path: pathResolve("src/layout/theme/yellow-vars.scss")
- },
- {
- scopeName: "layout-theme-mingQing",
- path: pathResolve("src/layout/theme/mingQing-vars.scss")
- },
- {
- scopeName: "layout-theme-auroraGreen",
- path: pathResolve("src/layout/theme/auroraGreen-vars.scss")
- },
- {
- scopeName: "layout-theme-pink",
- path: pathResolve("src/layout/theme/pink-vars.scss")
- },
- {
- scopeName: "layout-theme-saucePurple",
- path: pathResolve("src/layout/theme/saucePurple-vars.scss")
- }
- ],
-
- defaultScopeName: "",
-
- extract: true,
-
- outputDir: "",
-
- themeLinkTagId: "head",
-
- themeLinkTagInjectTo: "head",
-
- removeCssScopeName: false,
-
- customThemeCssFileName: scopeName => scopeName
- }
- }),
-
- svgLoader(),
-
- styleImport({
- libs: [
- {
- libraryName: "vxe-table",
- esModule: true,
- ensureStyleFile: true,
- resolveComponent: name => `vxe-table/es/${name}`,
- resolveStyle: name => `vxe-table/es/${name}/style.css`
- }
- ]
- }),
- ElementPlus({}),
-
- viteMockServe({
- mockPath: "mock",
- localEnabled: command === "serve",
- prodEnabled: command !== "serve" && prodMock,
- injectCode: `
- import { setupProdMockServer } from './mockProdServer';
- setupProdMockServer();
- `,
- logger: true
- })
- ],
- optimizeDeps: {
- include: [
- "element-plus/lib/locale/lang/zh-cn",
- "element-plus/lib/locale/lang/en",
- "vxe-table/lib/locale/lang/zh-CN",
- "vxe-table/lib/locale/lang/en-US"
- ],
- exclude: ["@zougt/vite-plugin-theme-preprocessor/dist/browser-utils"]
- },
- build: {
- sourcemap: false,
- brotliSize: false,
-
- chunkSizeWarningLimit: 2000,
- minify: false
- },
- define: {
- __INTLIFY_PROD_DEVTOOLS__: false
- }
- };
- };
|