123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- import { defineConfig, loadEnv, ConfigEnv, UserConfig } from "vite";
- import { resolve } from "path";
- import { wrapperEnv } from "./build/getEnv";
- import { createProxy } from "./build/proxy";
- import { createVitePlugins } from "./build/plugins";
- import pkg from "./package.json";
- import dayjs from "dayjs";
- const { dependencies, devDependencies, name, version } = pkg;
- const __APP_INFO__ = {
- pkg: { dependencies, devDependencies, name, version },
- lastBuildTime: dayjs().format("YYYY-MM-DD HH:mm:ss")
- };
- export default defineConfig(({ mode }: ConfigEnv): UserConfig => {
- const root = process.cwd();
- const env = loadEnv(mode, root);
- const viteEnv = wrapperEnv(env);
- return {
- base: viteEnv.VITE_PUBLIC_PATH,
- root,
- resolve: {
- alias: {
- "@": resolve(__dirname, "./src"),
- "vue-i18n": "vue-i18n/dist/vue-i18n.cjs.js"
- }
- },
- define: {
- __APP_INFO__: JSON.stringify(__APP_INFO__)
- },
- css: {
- preprocessorOptions: {
- scss: {
- additionalData: `@import "@/styles/var.scss";`
- }
- }
- },
- server: {
- host: "0.0.0.0",
- port: viteEnv.VITE_PORT,
- open: viteEnv.VITE_OPEN,
- cors: true,
-
- proxy: createProxy(viteEnv.VITE_PROXY)
- },
- plugins: createVitePlugins(viteEnv),
- esbuild: {
- pure: viteEnv.VITE_DROP_CONSOLE ? ["console.log", "debugger"] : []
- },
- build: {
- outDir: "dist",
- minify: "esbuild",
-
-
-
-
-
-
-
-
- sourcemap: false,
-
- reportCompressedSize: false,
-
- chunkSizeWarningLimit: 2000,
- rollupOptions: {
- output: {
-
- chunkFileNames: "assets/js/[name]-[hash].js",
- entryFileNames: "assets/js/[name]-[hash].js",
- assetFileNames: "assets/[ext]/[name]-[hash].[ext]"
- }
- }
- }
- };
- });
|