vue.config.js 377 B

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