vue.config.js 229B

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