智莺站长PC端官网代码, vite-vue
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

14 行
297 B

  1. const path = require('path')
  2. module.exports = {
  3. hostname: '0.0.0.0',
  4. port: 8080,
  5. // 反向代理
  6. proxy: {
  7. '/api': {
  8. target: 'https://inapi.izhyin.cn/api',
  9. changeOrigin: true,
  10. rewrite: path => path.replace(/^\/api/, '')
  11. }
  12. }
  13. }