Skip to content
Snippets Groups Projects
vue.config.js 201 B
Newer Older
const path = require('path');

module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: 'https://localhost:443',
        ws: true,
        changeOrigin: true,
      }
    },
  }
}