vite.config.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. // https://vitejs.dev/config/
  10. export default defineConfig({
  11. plugins: [vue(), viteCompression(), VitePluginHtmlEnv(), visualizer(), createSvgIconsPlugin({
  12. // 指定需要缓存的图标文件夹
  13. iconDirs: [resolve(process.cwd(), 'src/assets/svg/global'), resolve(process.cwd(), 'src/assets/svg/business')],
  14. // 指定symbolId格式
  15. symbolId: 'icon-[dir]-[name]',
  16. }), topLevelAwait({
  17. promiseExportName: '__tla',
  18. promiseImportName: i => `__tla_${i}`
  19. })],
  20. base: '/',
  21. resolve: {
  22. alias: {
  23. '@': resolve(__dirname, 'src'),
  24. '~@': resolve(__dirname, 'src'),
  25. '@views': resolve(__dirname, 'src/views'),
  26. '@components': resolve(__dirname, 'src/components')
  27. },
  28. },
  29. server: {
  30. port: 1006,
  31. // open: true,
  32. https: false,
  33. base: '/',
  34. host: '0.0.0.0',
  35. strictPort: false,
  36. proxy: {
  37. '/api': {
  38. // target: 'http://localhost:8080/',
  39. target: 'http://120.25.74.229:8000/',
  40. // target: 'http://192.168.1.110:8080/',
  41. changeOrigin: true,
  42. rewrite: path => {
  43. return path.replace(/^\/api/, '')
  44. }
  45. },
  46. '/EzServer6-api': {
  47. target: 'http://74.10.28.116:8090/',
  48. changeOrigin: true,
  49. rewrite: path => {
  50. return path
  51. }
  52. },
  53. }
  54. },
  55. build: {
  56. outDir: "seat-tools",
  57. },
  58. publicDir: 'src/out',
  59. optimizeDeps: {
  60. include: []
  61. }
  62. })