Skip to content
Snippets Groups Projects
vue.config.js 202 B
Newer Older
Jan Kolomazník's avatar
Jan Kolomazník committed
const path = require('path')

module.exports = {
  devServer: {
    proxy: {
      '/api': {
        target: 'http://localhost:8080',
        ws: true,
        changeOrigin: true,
      },
    },
Jan Kolomazník's avatar
Jan Kolomazník committed
}