vue.config.js 482 B

1234567891011121314151617181920
  1. const path = require("path");
  2. module.exports = {
  3. publicPath: "./",
  4. devServer: {
  5. host: "0.0.0.0",
  6. port: "",
  7. proxy: {
  8. "/api": {
  9. target: "http://linyi.natapp1.cc", // 目标 API 地址 富勇电脑
  10. ws: true,
  11. changeOrigin: true, // 将主机标头的原点更改为目标URL
  12. pathRewrite: {
  13. "^/api": "/api"
  14. }
  15. }
  16. }
  17. }
  18. };