Skip to content
Snippets Groups Projects
vue.config.js 283 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,
      },
    },
  },
  outputDir: path.resolve(__dirname, '../backend/build/resources/main/static'),
}