vite.config.ts 4.4 KB

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