vite.config.js 723 B

12345678910111213141516171819202122232425262728
  1. import * as path from "path";
  2. const resolve = (dir) => path.resolve(__dirname, dir);
  3. import { fileURLToPath, URL } from 'node:url'
  4. import { defineConfig } from 'vite'
  5. import vue from '@vitejs/plugin-vue'
  6. // https://vitejs.dev/config/
  7. export default defineConfig({
  8. server:{
  9. cors: true,
  10. proxy: {
  11. '/api': {
  12. // 代理请求之后的请求地址(你的真实接口地址)
  13. target: 'http://10.90.9.143:9252/DataSearch/',
  14. //target: 'http://localhost:9250/',
  15. secure: false,
  16. ws: true,
  17. // 跨域
  18. changeOrigin: true,
  19. rewrite: (path) => path.replace(/^\/api/, '')
  20. },
  21. }
  22. },
  23. plugins: [vue()],
  24. base:'./',
  25. publicDir: resolve('static'),
  26. })