123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- import { getPluginsList } from "./build/plugins";
- import { include, exclude } from "./build/optimize";
- import { type UserConfigExport, type ConfigEnv, loadEnv } from "vite";
- import {
- root,
- alias,
- warpperEnv,
- pathResolve,
- __APP_INFO__
- } from "./build/utils";
- export default ({ mode }: ConfigEnv): UserConfigExport => {
- const { VITE_CDN, VITE_PORT, VITE_COMPRESSION, VITE_PUBLIC_PATH } =
- warpperEnv(loadEnv(mode, root));
- return {
- base: VITE_PUBLIC_PATH,
- root,
- resolve: {
- alias
- },
-
- server: {
-
- port: VITE_PORT,
- host: "0.0.0.0",
-
- proxy: {
- "^/api/.*": {
-
- target: "http://192.168.1.96:8090",
- changeOrigin: true,
- rewrite: path => path.replace(/^\/api/, "/api")
- }
- },
-
- warmup: {
- clientFiles: ["./index.html", "./src/{views,components}/*"]
- }
- },
- plugins: getPluginsList(VITE_CDN, VITE_COMPRESSION),
-
- optimizeDeps: {
- include,
- exclude
- },
- build: {
-
- target: "es2015",
- sourcemap: false,
-
- chunkSizeWarningLimit: 4000,
- rollupOptions: {
- input: {
- index: pathResolve("./index.html", import.meta.url)
- },
-
- output: {
- chunkFileNames: "static/js/[name]-[hash].js",
- entryFileNames: "static/js/[name]-[hash].js",
- assetFileNames: "static/[ext]/[name]-[hash].[ext]"
- }
- }
- },
- define: {
- __INTLIFY_PROD_DEVTOOLS__: false,
- __APP_INFO__: JSON.stringify(__APP_INFO__)
- }
- };
- };
|