vue.config.js 225 B

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