vite.config.ts 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import topLevelAwait from 'vite-plugin-top-level-await'
  4. import { resolve } from 'path'
  5. import viteCompression from 'vite-plugin-compression';//Gzip
  6. import { visualizer } from "rollup-plugin-visualizer";
  7. import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // 【svg-icons相关】
  8. import VitePluginHtmlEnv from 'vite-plugin-html-env'
  9. const time = new Date().getTime()
  10. export default defineConfig({
  11. define: {
  12. 'process.env': process.env
  13. },
  14. plugins: [
  15. vue(),
  16. viteCompression(),
  17. VitePluginHtmlEnv(),
  18. visualizer(),
  19. createSvgIconsPlugin({
  20. // 指定需要缓存的图标文件夹
  21. iconDirs: [resolve(process.cwd(), 'src/assets/svg')],
  22. // 指定symbolId格式
  23. symbolId: 'icon-[dir]-[name]',
  24. // svgoOptions: {
  25. // plugins: [
  26. // {
  27. // name: 'removeAttrs',
  28. // params: {
  29. // attrs: ['class', 'data-name', 'fill', 'stroke']
  30. // }
  31. // }
  32. // ]
  33. // }
  34. }),
  35. topLevelAwait({
  36. promiseExportName: '__tla',
  37. promiseImportName: i => `__tla_${i}`
  38. })
  39. ],
  40. base: '/',
  41. resolve: {
  42. alias: {
  43. '@': resolve(__dirname, 'src'),
  44. '~@': resolve(__dirname, 'src'),
  45. '@views': resolve(__dirname, 'src/views'),
  46. '@components': resolve(__dirname, 'src/components')
  47. },
  48. },
  49. server: {
  50. port: 8090,
  51. // open: true,
  52. https: false,
  53. host: '0.0.0.0',
  54. strictPort: false,
  55. proxy: {
  56. '/mock-api': {
  57. target: 'https://www.fastmock.site/mock/002bd20e30dcef8f255675f80a50382c/mock',
  58. changeOrigin: true,
  59. rewrite: path => {
  60. return path.replace(/^\/mock-api/, '')
  61. }
  62. },
  63. }
  64. },
  65. build: {
  66. outDir: "tszwfw-mobile",
  67. rollupOptions: {//分包优化
  68. output: {
  69. manualChunks(id) {
  70. if (id.includes('node_modules')) {
  71. return time + id.toString().split('node_modules/')[1].split('/')[0].toString();
  72. } else {
  73. return time + id.toString();
  74. }
  75. }
  76. }
  77. }
  78. },
  79. publicDir: 'src/out',
  80. optimizeDeps: {
  81. include: []
  82. }
  83. })