vue.config.js 206 B

123456789101112131415
  1. module.exports = {
  2. publicPath: './',
  3. devServer: {
  4. proxy: {
  5. '/api': {
  6. target: 'https://duoxiaoduoxue.cn/',
  7. ws: true,
  8. changeOrigin: true,
  9. pathRewrite: {
  10. '^/api': ''
  11. }
  12. },
  13. }
  14. }
  15. }