vue.config.js 374 B

1234567891011121314151617
  1. const { defineConfig } = require('@vue/cli-service')
  2. module.exports = defineConfig({
  3. transpileDependencies: true,
  4. // 关闭语法检测
  5. lintOnSave: false,
  6. // 代理服务器 解决跨域问题
  7. devServer:{
  8. port: 8080,
  9. proxy:{
  10. "api":{
  11. target:"http://localhost:8888",
  12. pathRewrite:{"^/api":""}
  13. }
  14. }
  15. },
  16. })