vue.config.js 218B

123456789101112
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/api': {
  5. target: 'http://localhost:8081',
  6. ws: true,
  7. changeOrigin: true,
  8. pathRewrite: {'^/api': ''}
  9. }
  10. }
  11. }
  12. }