vite.config.ts 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. import type { UserConfig } from 'vite';
  2. import { resolve } from 'path';
  3. import { modifyVars } from './build/config/lessModifyVars';
  4. import { createProxy } from './build/vite/proxy';
  5. import globbyTransform from './build/vite/plugin/context/transform';
  6. import { isDevFn, loadEnv } from './build/utils';
  7. import { createRollupPlugin, createVitePlugins } from './build/vite/plugin';
  8. const pkg = require('./package.json');
  9. const viteEnv = loadEnv();
  10. const {
  11. VITE_PORT,
  12. VITE_PUBLIC_PATH,
  13. VITE_PROXY,
  14. VITE_DROP_CONSOLE,
  15. // VITE_USE_CDN,
  16. } = viteEnv;
  17. function pathResolve(dir: string) {
  18. return resolve(__dirname, '.', dir);
  19. }
  20. const viteConfig: UserConfig = {
  21. /**
  22. * Entry. Use this to specify a js entry file in use cases where an
  23. * `index.html` does not exist (e.g. serving vite assets from a different host)
  24. * @default 'index.html'
  25. */
  26. // TODO build error
  27. // entry: './public/index.html',
  28. /**
  29. * port
  30. * @default '3000'
  31. */
  32. port: VITE_PORT,
  33. /**
  34. * @default 'localhost'
  35. */
  36. hostname: 'localhost',
  37. /**
  38. * Run to open the browser automatically
  39. * @default 'false'
  40. */
  41. open: false,
  42. /**
  43. * Set to `false` to disable minification, or specify the minifier to use.
  44. * Available options are 'terser' or 'esbuild'.
  45. * @default 'terser'
  46. */
  47. minify: isDevFn() ? 'esbuild' : 'terser',
  48. /**
  49. * Base public path when served in production.
  50. * @default '/'
  51. */
  52. base: VITE_PUBLIC_PATH,
  53. /**
  54. * Directory relative from `root` where build output will be placed. If the
  55. * directory exists, it will be removed before the build.
  56. * @default 'dist'
  57. */
  58. outDir: 'dist',
  59. /**
  60. * Whether to generate sourcemap
  61. * @default false
  62. */
  63. sourcemap: false,
  64. /**
  65. * Directory relative from `outDir` where the built js/css/image assets will
  66. * be placed.
  67. * @default '_assets'
  68. */
  69. assetsDir: '_assets',
  70. /**
  71. * Static asset files smaller than this number (in bytes) will be inlined as
  72. * base64 strings. Default limit is `4096` (4kb). Set to `0` to disable.
  73. * @default 4096
  74. */
  75. assetsInlineLimit: 4096,
  76. /**
  77. * Transpile target for esbuild.
  78. * @default 'es2020'
  79. */
  80. esbuildTarget: 'es2020',
  81. /**
  82. * Whether to log asset info to console
  83. * @default false
  84. */
  85. silent: false,
  86. /**
  87. * Import alias. The entries can either be exact request -> request mappings
  88. * (exact, no wildcard syntax), or request path -> fs directory mappings.
  89. * When using directory mappings, the key **must start and end with a slash**.
  90. * ```
  91. */
  92. alias: {
  93. '/@/': pathResolve('src'),
  94. },
  95. // terser options
  96. terserOptions: {
  97. compress: {
  98. drop_console: VITE_DROP_CONSOLE,
  99. },
  100. },
  101. define: {
  102. __VERSION__: pkg.version,
  103. },
  104. cssPreprocessOptions: {
  105. less: {
  106. modifyVars: modifyVars,
  107. javascriptEnabled: true,
  108. },
  109. },
  110. // The package will be recompiled using rollup, and the new package compiled into the esm module specification will be put into node_modules/.vite_opt_cache
  111. optimizeDeps: {
  112. include: [
  113. 'echarts',
  114. 'echarts/map/js/china',
  115. 'ant-design-vue/es/locale/zh_CN',
  116. '@ant-design/icons-vue',
  117. 'moment/locale/zh-cn',
  118. ],
  119. },
  120. // Local cross-domain proxy
  121. proxy: createProxy(VITE_PROXY),
  122. plugins: createVitePlugins(viteEnv),
  123. rollupInputOptions: {
  124. // TODO
  125. // external: VITE_USE_CDN ? externals : [],
  126. plugins: createRollupPlugin(),
  127. },
  128. };
  129. export default {
  130. ...viteConfig,
  131. transforms: [globbyTransform(viteConfig)],
  132. } as UserConfig;