vue.config.js 275 B

123456789101112
  1. module.exports = {
  2. devServer: {
  3. proxy: {
  4. '/api': {
  5. // target: 'http://xjctest.baianxi.com',
  6. target: 'http://118.190.145.217:8091',
  7. changeOrigin: true,
  8. }
  9. }
  10. },
  11. publicPath: '/'
  12. }