vue.config.js 269 B

123456789101112131415
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. "^/api": {
  5. target: "http://localhost:4000/",
  6. // target: "http://10.1.2.2:8080/",
  7. ws: true,
  8. changeOrigin: true
  9. }
  10. }
  11. },
  12. configureWebpack: {
  13. devtool: "source-map"
  14. }
  15. };