vue.config.js 434 B

1234567891011121314151617181920
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/api': {
  5. // target: 'http://118.190.145.217:8090',
  6. // target: 'http://nj.scxjc.club',
  7. target:'http://xjctest.baianxi.com/',
  8. changeOrigin: true
  9. }
  10. },
  11. overlay: {
  12. warning: false,
  13. errors: false
  14. }
  15. },
  16. publicPath: '/',
  17. lintOnSave: false
  18. }