vue.config.js 302 B

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