1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import { resolve } from "path";
- import { warpperEnv, regExps } from "./build";
- import { getPluginsList } from "./build/plugins";
- import { UserConfigExport, ConfigEnv, loadEnv } from "vite";
- 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_LEGACY,
- VITE_PUBLIC_PATH,
- VITE_PROXY_DOMAIN,
- VITE_PROXY_DOMAIN_REAL
- } = warpperEnv(loadEnv(mode, root));
- return {
- base: VITE_PUBLIC_PATH,
- root,
- resolve: {
- alias
- },
- css: {
-
- postcss: {
- plugins: [
- {
- postcssPlugin: "internal:charset-removal",
- AtRule: {
- charset: atRule => {
- if (atRule.name === "charset") {
- atRule.remove();
- }
- }
- }
- }
- ]
- }
- },
-
- 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: getPluginsList(command, VITE_LEGACY),
- optimizeDeps: {
- include: [
- "pinia",
- "vue-i18n",
- "lodash-es",
- "@vueuse/core",
- "@iconify/vue",
- "element-plus/lib/locale/lang/en",
- "element-plus/lib/locale/lang/zh-cn",
- "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
- },
- define: {
- __INTLIFY_PROD_DEVTOOLS__: false
- }
- };
- };
|