vue.config.js 347 B

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