vite.config.ts 2.8 KB
Newer Older
陈文彬 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
import { resolve } from 'path';

import type { UserConfig, Plugin as VitePlugin } from 'vite';

import visualizer from 'rollup-plugin-visualizer';
import { modifyVars } from './build/config/glob/lessModifyVars';
import { setupBasicEnv } from './build/config/vite/env';
import { createProxy } from './build/config/vite/proxy';
import { createMockServer } from 'vite-plugin-mock';
import PurgeIcons from 'vite-plugin-purge-icons';
import { isDevFn, isReportMode, isProdFn, loadEnv } from './build/utils';

setupBasicEnv();
B
bin 已提交
14
const { VITE_USE_MOCK, VITE_PORT, VITE_PUBLIC_PATH, VITE_PROXY } = loadEnv();
陈文彬 已提交
15 16 17 18

function pathResolve(dir: string) {
  return resolve(__dirname, '.', dir);
}
B
bin 已提交
19 20

const rollupPlugins: any[] = [];
陈文彬 已提交
21 22 23 24 25 26 27 28 29
const vitePlugins: VitePlugin[] = [];

(() => {
  if (isReportMode() && isProdFn()) {
    // report
    rollupPlugins.push(
      visualizer({ filename: './node_modules/.cache/stats.html', open: true }) as Plugin
    );
  }
B
bin 已提交
30
  if (isDevFn() && VITE_USE_MOCK) {
陈文彬 已提交
31 32 33 34 35 36 37 38 39 40 41
    // open mock
    vitePlugins.push(
      createMockServer({
        ignore: /^\_/,
        mockPath: 'mock',
      })
    );
  }
})();

const viteConfig: UserConfig = {
B
bin 已提交
42 43 44 45 46
  /**
   * 端口号
   * @default '3000'
   */
  port: VITE_PORT,
陈文彬 已提交
47 48 49 50 51 52
  /**
   * 服务地址
   * @default 'localhost'
   */
  hostname: 'localhost',
  /**
陈文彬 已提交
53
   * 运行自动打开浏览器·
陈文彬 已提交
54 55 56 57 58 59 60 61 62 63
   * @default 'false'
   */
  open: false,
  /**
   * 压缩代码
   *  boolean | 'terser' | 'esbuild'
   * @default 'terser'
   */
  minify: isDevFn() ? false : 'terser',
  /**
B
bin 已提交
64
   * 基本公共路径
陈文彬 已提交
65 66
   * @default '/'
   */
B
bin 已提交
67
  base: VITE_PUBLIC_PATH,
陈文彬 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89

  /**
   * 打包输入路径
   * @default 'dist'
   */
  outDir: 'dist',
  /**
   * @default 'false'
   */
  sourcemap: false,
  /**
   * 资源输出路径
   * @default '_assets'
   */
  assetsDir: '_assets',
  /**
   * 静态资源小于该大小将会内联,默认4096kb
   * @default '4096'
   */
  assetsInlineLimit: 4096,
  /**
   * esbuild转换目标。
陈文彬 已提交
90
   * @default 'es2019'
陈文彬 已提交
91
   */
陈文彬 已提交
92
  esbuildTarget: 'es2019',
B
bin 已提交
93
  silent: false,
陈文彬 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  // 别名
  alias: {
    '/@/': pathResolve('src'),
  },
  // define: {
  //   __ENV__: 'value',
  // },
  // css预处理
  cssPreprocessOptions: {
    less: {
      modifyVars: modifyVars,
      javascriptEnabled: true,
    },
  },
  // 配置Dep优化行为
  // 会使用 rollup 对 包重新编译,将编译成符合 esm 模块规范的新的包放入 node_modules 下的 .
  optimizeDeps: {
111 112 113 114 115 116 117
    include: [
      'echarts',
      'echarts/map/js/china',
      'ant-design-vue/es/locale/zh_CN',
      '@ant-design/icons-vue',
      'moment/locale/zh-cn',
    ],
陈文彬 已提交
118 119
  },
  // 本地跨域代理
B
bin 已提交
120
  proxy: createProxy(VITE_PROXY),
陈文彬 已提交
121 122 123 124 125 126 127 128 129

  plugins: [PurgeIcons(), ...vitePlugins],
  rollupOutputOptions: {},
  rollupInputOptions: {
    plugins: rollupPlugins,
  },
};

export default viteConfig;