vite.config.ts 7.3 KB

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