vite.config.ts 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. // @ts-ignore
  2. import path from 'path'
  3. import vue from '@vitejs/plugin-vue'
  4. import legacy from '@vitejs/plugin-legacy'
  5. import vueJsx from '@vitejs/plugin-vue-jsx'
  6. import viteSvgIcons from 'vite-plugin-svg-icons'
  7. //mock
  8. import { viteMockServe } from 'vite-plugin-mock'
  9. //inject title
  10. import { createHtmlPlugin } from 'vite-plugin-html'
  11. //setup name
  12. // import VueSetupExtend from 'vite-plugin-vue-setup-extend-plus'
  13. //auto import element-plus has some issue
  14. import Components from 'unplugin-vue-components/vite'
  15. // import { ElementPlusResolver } from 'unplugin-vue-components/resolvers'
  16. // import Icons from 'unplugin-icons/vite'
  17. // import IconsResolver from 'unplugin-icons/resolver'
  18. import UnoCSS from 'unocss/vite'
  19. import { presetAttributify, presetIcons, presetUno } from 'unocss'
  20. import mkcert from 'vite-plugin-mkcert'
  21. import DefineOptions from 'unplugin-vue-define-options/vite'
  22. //auto import vue https://www.npmjs.com/package/unplugin-auto-import
  23. import AutoImport from 'unplugin-auto-import/vite'
  24. import setting from './src/settings'
  25. const prodMock = setting.openProdMock
  26. // import packageJson from './package.json'
  27. // import { loadEnv } from 'vite'
  28. import { optimizeDependencies, optimizeElementPlus } from './optimize-include'
  29. const pathSrc = path.resolve(__dirname, 'src')
  30. export default ({ command, mode }: any) => {
  31. return {
  32. //detail to look https://vitejs.cn/config/#base
  33. base: setting.viteBasePath,
  34. //define global var
  35. define: {
  36. //fix "path" module issue
  37. 'process.platform': null,
  38. 'process.version': null,
  39. GLOBAL_STRING: JSON.stringify('i am global var from vite.config.js define'),
  40. GLOBAL_VAR: {
  41. test: 'i am global var from vite.config.js define'
  42. }
  43. },
  44. clearScreen: false,
  45. server: {
  46. hmr: { overlay: false }, // 禁用或配置 HMR 连接 设置 server.hmr.overlay 为 false 可以禁用服务器错误遮罩层
  47. port: 5003, // 类型: number 指定服务器端口;
  48. open: false, // 类型: boolean | string在服务器启动时自动在浏览器中打开应用程序;
  49. cors: true, // 类型: boolean | CorsOptions 为开发服务器配置 CORS。默认启用并允许任何源
  50. host: true,
  51. https: false //whether open https 开启https首次运行比较慢 且有个输入密码过程
  52. //proxy look for https://vitejs.cn/config/#server-proxy
  53. // proxy: {
  54. // '/api': {
  55. // target: loadEnv(mode, process.cwd()).VITE_APP_PROXY_URL,
  56. // changeOrigin: true,
  57. // rewrite: (path) => path.replace(/^\/api/, '')
  58. // }
  59. // }
  60. },
  61. preview: {
  62. port: 5008,
  63. host: true,
  64. strictPort: true
  65. },
  66. plugins: [
  67. vue({ reactivityTransform: true }),
  68. // Icons({
  69. // autoInstall: true,
  70. // }),
  71. vueJsx(),
  72. UnoCSS({
  73. presets: [presetUno(), presetAttributify(), presetIcons()]
  74. }),
  75. DefineOptions(),
  76. mkcert(),
  77. //compatible with old browsers
  78. // legacy({
  79. // targets: ['chrome 52'],
  80. // additionalLegacyPolyfills: ['regenerator-runtime/runtime']
  81. // }),
  82. viteSvgIcons({
  83. // config svg dir that can config multi
  84. iconDirs: [path.resolve(process.cwd(), 'src/icons/common'), path.resolve(process.cwd(), 'src/icons/nav-bar')],
  85. // appoint svg icon using mode
  86. symbolId: 'icon-[dir]-[name]'
  87. }),
  88. //https://github.com/anncwb/vite-plugin-mock/blob/HEAD/README.zh_CN.md
  89. viteMockServe({
  90. supportTs: true,
  91. mockPath: 'mock',
  92. localEnabled: command === 'serve',
  93. prodEnabled: prodMock,
  94. injectCode: `
  95. import { setupProdMockServer } from './mockProdServer';
  96. setupProdMockServer();
  97. `,
  98. logger: true
  99. }),
  100. // VueSetupExtend(),using DefineOptions instant of it
  101. //https://github.com/antfu/unplugin-auto-import/blob/HEAD/src/types.ts
  102. Components({
  103. resolvers: [
  104. // on-demand element-plus has some issue
  105. // ElementPlusResolver({
  106. // importStyle: 'sass'
  107. // })
  108. // import icons
  109. // https://github.com/antfu/unplugin-icons
  110. // IconsResolver(),
  111. ]
  112. }),
  113. AutoImport({
  114. // resolvers: [ElementPlusResolver()],
  115. imports: [
  116. 'vue',
  117. 'pinia',
  118. 'vue-router',
  119. {
  120. '@/hooks/global/useCommon': ['useCommon'],
  121. '@/hooks/global/useElement': ['useElement'],
  122. '@/hooks/global/useVueRouter': ['useVueRouter'],
  123. '@/utils/axiosReq': ['axiosReq']
  124. }
  125. ],
  126. eslintrc: {
  127. enabled: true, // Default `false`
  128. filepath: './.eslintrc-auto-import.json', // Default `./.eslintrc-auto-import.json`
  129. globalsPropValue: true // Default `true`, (true | false | 'readonly' | 'readable' | 'writable' | 'writeable')
  130. },
  131. dts: true //auto generation auto-imports.d.ts file
  132. }),
  133. // auto config of index.html title
  134. createHtmlPlugin({
  135. inject: {
  136. // Inject data into ejs template
  137. data: {
  138. title: setting.title,
  139. injectScript: `<script src="./demo.js"></script>`
  140. }
  141. }
  142. })
  143. ],
  144. // logLevel: 'error',
  145. build: {
  146. //target: 'es2015',
  147. minify: 'terser',
  148. brotliSize: false,
  149. // 消除打包大小超过500kb警告
  150. chunkSizeWarningLimit: 5000,
  151. //remote console.log in prod
  152. terserOptions: {
  153. //detail to look https://terser.org/docs/api-reference#compress-options
  154. compress: {
  155. drop_console: false,
  156. pure_funcs: ['console.log', 'console.info'],
  157. drop_debugger: true
  158. }
  159. },
  160. //build assets Separate
  161. assetsDir: 'static/assets',
  162. rollupOptions: {
  163. output: {
  164. chunkFileNames: 'static/js/[name]-[hash].js',
  165. entryFileNames: 'static/js/[name]-[hash].js',
  166. assetFileNames: 'static/[ext]/[name]-[hash].[ext]'
  167. }
  168. }
  169. },
  170. resolve: {
  171. alias: {
  172. '~/': `${pathSrc}/`,
  173. '@/': `${pathSrc}/`
  174. }
  175. //why remove it , look for https://github.com/vitejs/vite/issues/6026
  176. // extensions: ['.js', '.ts', '.jsx', '.tsx', '.json', '.vue', '.mjs']
  177. },
  178. css: {
  179. // postcss: {
  180. // //remove build charset warning
  181. // plugins: [
  182. // {
  183. // postcssPlugin: 'internal:charset-removal',
  184. // AtRule: {
  185. // charset: (atRule) => {
  186. // if (atRule.name === 'charset') {
  187. // atRule.remove()
  188. // }
  189. // }
  190. // }
  191. // }
  192. // ]
  193. // },
  194. // preprocessorOptions: {
  195. //define global scss variable import
  196. // scss: {
  197. // additionalData: `@use '@/theme/index.scss' as * ;`
  198. // }
  199. // }
  200. },
  201. optimizeDeps: {
  202. //include: [...optimizeDependencies,...optimizeElementPlus] //on-demand element-plus use this
  203. // include: [...optimizeDependencies]
  204. include: ['moment-mini']
  205. }
  206. }
  207. }