12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- import vue from '@vitejs/plugin-vue';
- import { resolve } from 'path';
- import { ConfigEnv, defineConfig, loadEnv } from 'vite';
- import vueJsx from '@vitejs/plugin-vue-jsx';
- import compression from 'vite-plugin-compression';
- const pathResolve = (dir: string) => {
- return resolve(__dirname, '.', dir);
- };
- const alias: Record<string, string> = {
- '/@': pathResolve('./src/'),
- '@views': pathResolve('./src/views'),
- 'vue-i18n': 'vue-i18n/dist/vue-i18n.cjs.js',
- '@dvaformflow': pathResolve('./src/viwes/plugins/dvaadmin_form_flow/src/')
- };
- const viteConfig = defineConfig((mode: ConfigEnv) => {
- const env = loadEnv(mode.mode, process.cwd());
- return {
- plugins: [
- vue(),
- vueJsx(),
- // vueSetupExtend()
- compression({
- algorithm: 'gzip', // 使用 gzip 压缩
- ext: '.gz', // 输出的文件扩展名
- threshold: 10240, // 只有大小大于该值的资源会被压缩(默认 10KB)
- deleteOriginFile: false, // 是否删除原始未压缩的文件
- }),
- ],
- root: process.cwd(),
- resolve: { alias },
- base: mode.command === 'serve' ? './' : env.VITE_PUBLIC_PATH,
- optimizeDeps: {
- include: [ 'element-plus/es/locale/lang/zh-cn', 'element-plus/es/locale/lang/en', 'element-plus/es/locale/lang/zh-tw' ]
- },
- server: {
- host: '0.0.0.0',
- port: env.VITE_PORT as unknown as number,
- open: true,
- hmr: true,
- proxy: {
- '/gitee': {
- target: 'https://gitee.com',
- ws: true,
- changeOrigin: true,
- rewrite: (path) => path.replace(/^\/gitee/, '')
- }
- }
- },
- build: {
- outDir: env.VITE_DIST_PATH || 'dist',
- 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' ],
- elementPlus: ['element-plus'],
- },
- // manualChunks(id) {
- // if (id.includes('node_modules')) {
- // return 'vendor';
- // }
- // }
- }
- }
- },
- css: { preprocessorOptions: { css: { charset: false } } },
- define: {
- __VUE_I18N_LEGACY_API__: JSON.stringify(false),
- __VUE_I18N_FULL_INSTALL__: JSON.stringify(false),
- __INTLIFY_PROD_DEVTOOLS__: JSON.stringify(false),
- __VERSION__: JSON.stringify(process.env.npm_package_version)
- }
- };
- });
- export default viteConfig;
|