vue.config.js 298 B

1234567891011121314
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/api': {
  5. // target: 'http://xjctest.baianxi.com',
  6. target: 'http://test.scxjc.club',
  7. changeOrigin: true,
  8. }
  9. }
  10. },
  11. publicPath: '/',
  12. lintOnSave: false
  13. }