vue.config.js 199 B

12345678910111213
  1. // vue.config.js
  2. module.exports = {
  3. transpileDependencies: ['uni-ajax'],
  4. devServer: {
  5. proxy: {
  6. '/shunt': {
  7. target: 'http://114.116.114.108:18585',
  8. changeOrigin: true,
  9. },
  10. }
  11. },
  12. }