mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 00:10:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			100 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			100 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import vue from '@vitejs/plugin-vue';
 | 
						|
import { resolve } from 'path';
 | 
						|
import type { UserConfig } from 'vite';
 | 
						|
import { loadEnv } from './src/common/utils/viteBuild';
 | 
						|
import { CodeInspectorPlugin } from 'code-inspector-plugin';
 | 
						|
import progress from 'vite-plugin-progress';
 | 
						|
 | 
						|
const pathResolve = (dir: string): any => {
 | 
						|
    return resolve(__dirname, '.', dir);
 | 
						|
};
 | 
						|
 | 
						|
const { VITE_PORT, VITE_OPEN, VITE_PUBLIC_PATH, VITE_EDITOR } = loadEnv();
 | 
						|
 | 
						|
const isProd = process.env.NODE_ENV === 'production';
 | 
						|
 | 
						|
const alias: Record<string, string> = {
 | 
						|
    '@': pathResolve('src/'),
 | 
						|
};
 | 
						|
 | 
						|
const viteConfig: UserConfig = {
 | 
						|
    plugins: [
 | 
						|
        vue(),
 | 
						|
        CodeInspectorPlugin({
 | 
						|
            bundler: 'vite',
 | 
						|
            editor: VITE_EDITOR as any,
 | 
						|
        }),
 | 
						|
        progress(),
 | 
						|
    ],
 | 
						|
    root: process.cwd(),
 | 
						|
    resolve: {
 | 
						|
        alias,
 | 
						|
    },
 | 
						|
    base: isProd ? VITE_PUBLIC_PATH : './',
 | 
						|
    optimizeDeps: {
 | 
						|
        include: ['element-plus/es/locale/lang/zh-cn'],
 | 
						|
    },
 | 
						|
    server: {
 | 
						|
        host: '0.0.0.0',
 | 
						|
        port: VITE_PORT,
 | 
						|
        open: VITE_OPEN,
 | 
						|
        proxy: {
 | 
						|
            '/api': {
 | 
						|
                target: 'http://localhost:18888',
 | 
						|
                ws: true,
 | 
						|
                changeOrigin: true,
 | 
						|
            },
 | 
						|
        },
 | 
						|
    },
 | 
						|
    build: {
 | 
						|
        outDir: 'dist',
 | 
						|
        minify: 'esbuild',
 | 
						|
        sourcemap: false,
 | 
						|
        chunkSizeWarningLimit: 1500,
 | 
						|
        rollupOptions: {
 | 
						|
            output: {
 | 
						|
                entryFileNames: `assets/[name]-[hash].js`,
 | 
						|
                chunkFileNames: `assets/[name]-[hash].js`,
 | 
						|
                assetFileNames: `assets/[name]-[hash].[ext]`,
 | 
						|
                compact: true,
 | 
						|
                manualChunks: {
 | 
						|
                    vue: ['vue', 'vue-router', 'pinia'],
 | 
						|
                    echarts: ['echarts'],
 | 
						|
                    monaco: ['monaco-editor'],
 | 
						|
                },
 | 
						|
            },
 | 
						|
        },
 | 
						|
    },
 | 
						|
    esbuild: {
 | 
						|
        drop: isProd ? ['console', 'debugger'] : [],
 | 
						|
    },
 | 
						|
    define: {
 | 
						|
        __VUE_I18N_LEGACY_API__: JSON.stringify(false),
 | 
						|
        __VUE_I18N_FULL_INSTALL__: JSON.stringify(false),
 | 
						|
        __INTLIFY_PROD_DEVTOOLS__: JSON.stringify(false),
 | 
						|
    },
 | 
						|
    css: {
 | 
						|
        postcss: {
 | 
						|
            plugins: [
 | 
						|
                {
 | 
						|
                    postcssPlugin: 'internal:charset-removal',
 | 
						|
                    AtRule: {
 | 
						|
                        charset: (atRule) => {
 | 
						|
                            if (atRule.name === 'charset') {
 | 
						|
                                atRule.remove();
 | 
						|
                            }
 | 
						|
                        },
 | 
						|
                    },
 | 
						|
                },
 | 
						|
            ],
 | 
						|
        },
 | 
						|
        preprocessorOptions: {
 | 
						|
            scss: {
 | 
						|
                api: 'modern-compiler', // or 'modern'
 | 
						|
            },
 | 
						|
        },
 | 
						|
    },
 | 
						|
};
 | 
						|
 | 
						|
export default viteConfig;
 |