vite.config.js 943 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import { defineConfig } from 'vite'
  2. import vue from '@vitejs/plugin-vue'
  3. import * as path from 'path'
  4. // https://vitejs.dev/config/
  5. export default defineConfig({
  6. plugins: [vue()],
  7. resolve: {
  8. alias: {
  9. '@': path.resolve(__dirname, './src'),
  10. },
  11. },
  12. // 解决跨域问题
  13. server: {
  14. host: '0.0.0.0',
  15. // port: 4000,
  16. proxy: {
  17. '/api': {
  18. target: 'http://127.0.0.1:8222',
  19. // secure: false, // 请求是否为https
  20. changeOrigin: true,
  21. rewrite:(path)=>path.replace(/^\/api/,'') //api替换为'',
  22. },
  23. },
  24. },
  25. // resolve: {
  26. // alias: {
  27. // '@': path.resolve(__dirname, 'src'),
  28. // },
  29. // },
  30. css: {
  31. preprocessorOptions: {
  32. less: {
  33. additionalData: `@import "@/assets/style/base.less";`,
  34. }
  35. },
  36. },
  37. })