vue.config.js 332 B

123456789101112131415
  1. module.exports = {
  2. "transpileDependencies": [
  3. "vuetify"
  4. ],
  5. devServer: {
  6. port: 3200,
  7. proxy: {
  8. '/api': {// 匹配所有以 '/api1'开头的请求路径
  9. target: 'http://localhost:8090',// 代理目标的基础路径
  10. changeOrigin: true,
  11. // pathRewrite: {'^/api1': ''}
  12. },
  13. }
  14. }
  15. }