vite.config.ts 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. import { resolve } from 'path'
  2. import { loadEnv } from 'vite'
  3. import type { UserConfig, ConfigEnv } from 'vite'
  4. import Vue from '@vitejs/plugin-vue'
  5. import VueJsx from '@vitejs/plugin-vue-jsx'
  6. import WindiCSS from 'vite-plugin-windicss'
  7. import progress from 'vite-plugin-progress'
  8. import EslintPlugin from 'vite-plugin-eslint'
  9. import { ViteEjsPlugin } from "vite-plugin-ejs"
  10. import { viteMockServe } from 'vite-plugin-mock'
  11. import PurgeIcons from 'vite-plugin-purge-icons'
  12. import VueI18nPlugin from "@intlify/unplugin-vue-i18n/vite"
  13. import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
  14. import DefineOptions from "unplugin-vue-define-options/vite"
  15. import { createStyleImportPlugin, ElementPlusResolve } from 'vite-plugin-style-import'
  16. // https://vitejs.dev/config/
  17. const root = process.cwd()
  18. function pathResolve(dir: string) {
  19. return resolve(root, '.', dir)
  20. }
  21. export default ({ command, mode }: ConfigEnv): UserConfig => {
  22. let env = {} as any
  23. const isBuild = command === 'build'
  24. if (!isBuild) {
  25. env = loadEnv((process.argv[3] === '--mode' ? process.argv[4] : process.argv[3]), root)
  26. } else {
  27. env = loadEnv(mode, root)
  28. }
  29. return {
  30. base: env.VITE_BASE_PATH,
  31. plugins: [
  32. Vue(),
  33. VueJsx(),
  34. WindiCSS(),
  35. progress(),
  36. createStyleImportPlugin({
  37. resolves: [ElementPlusResolve()],
  38. libs: [{
  39. libraryName: 'element-plus',
  40. esModule: true,
  41. resolveStyle: (name) => {
  42. return `element-plus/es/components/${name.substring(3)}/style/css`
  43. }
  44. }]
  45. }),
  46. EslintPlugin({
  47. cache: false,
  48. include: ['src/**/*.vue', 'src/**/*.ts', 'src/**/*.tsx'] // 检查的文件
  49. }),
  50. VueI18nPlugin({
  51. runtimeOnly: true,
  52. compositionOnly: true,
  53. include: [resolve(__dirname, 'src/locales/**')]
  54. }),
  55. createSvgIconsPlugin({
  56. iconDirs: [pathResolve('src/assets/svgs')],
  57. symbolId: 'icon-[dir]-[name]',
  58. svgoOptions: true
  59. }),
  60. PurgeIcons(),
  61. viteMockServe({
  62. ignore: /^\_/,
  63. mockPath: 'mock',
  64. localEnabled: !isBuild,
  65. prodEnabled: isBuild,
  66. injectCode: `
  67. import { setupProdMockServer } from '../mock/_createProductionServer'
  68. setupProdMockServer()
  69. `
  70. }),
  71. DefineOptions(),
  72. ViteEjsPlugin({
  73. title: env.VITE_APP_TITLE
  74. })
  75. ],
  76. css: {
  77. preprocessorOptions: {
  78. less: {
  79. additionalData: '@import "./src/styles/variables.module.less";',
  80. javascriptEnabled: true
  81. }
  82. }
  83. },
  84. resolve: {
  85. extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.less', '.css'],
  86. alias: [
  87. {
  88. find: 'vue-i18n',
  89. replacement: 'vue-i18n/dist/vue-i18n.cjs.js'
  90. },
  91. {
  92. find: /\@\//,
  93. replacement: `${pathResolve('src')}/`
  94. }
  95. ]
  96. },
  97. build: {
  98. minify: 'terser',
  99. outDir: env.VITE_OUT_DIR || 'dist',
  100. sourcemap: env.VITE_SOURCEMAP === 'true' ? 'inline' : false,
  101. // brotliSize: false,
  102. terserOptions: {
  103. compress: {
  104. drop_debugger: env.VITE_DROP_DEBUGGER === 'true',
  105. drop_console: env.VITE_DROP_CONSOLE === 'true'
  106. }
  107. }
  108. },
  109. server: {
  110. port: 4000,
  111. proxy: {
  112. // 选项写法
  113. '/api': {
  114. target: 'http://127.0.0.1:8000',
  115. changeOrigin: true,
  116. rewrite: path => path.replace(/^\/api/, '')
  117. }
  118. },
  119. hmr: {
  120. overlay: false
  121. },
  122. host: '0.0.0.0'
  123. },
  124. optimizeDeps: {
  125. include: [
  126. 'vue',
  127. 'vue-router',
  128. 'vue-types',
  129. 'element-plus/es/locale/lang/zh-cn',
  130. 'element-plus/es/locale/lang/en',
  131. '@iconify/iconify',
  132. '@vueuse/core',
  133. 'axios',
  134. 'qs',
  135. 'echarts',
  136. 'echarts-wordcloud',
  137. 'intro.js',
  138. 'qrcode',
  139. '@wangeditor/editor',
  140. '@wangeditor/editor-for-vue'
  141. ]
  142. }
  143. }
  144. }