summaryrefslogtreecommitdiffstats
path: root/vue.config.js
blob: 8ac410f19183df4dbd9b31141ae752dceab5151d (plain)
1
2
3
4
5
6
7
8
9
10
module.exports = {
  devServer: {
    proxy: {
      '/': {
        target: 'http://localhost:8001',
        ws: true
      },
    },
  }
}