vue.config.js 172 B

1234567891011
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/api': {
  5. target: 'http://esp-home.local:80',
  6. changeOrigin: true,
  7. ws: true
  8. }
  9. }
  10. }
  11. }