vite.config.ts 7.1 KB

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