vue.config.js 370 B

12345678910111213141516
  1. module.exports = {
  2. devServer: {
  3. host: 'localhost',
  4. port: 8080,
  5. proxy: {
  6. '/api': {
  7. target: 'http://8.136.230.133:8080',
  8. changeOrigin: true,
  9. wx: true,
  10. pathRewrite: {
  11. '^/api':''
  12. }
  13. },
  14. }
  15. }
  16. }