vue.config.js 256 B

123456789101112131415161718
  1. module.exports = {
  2. lintOnSave: false,
  3. publicPath:'/index/',
  4. devServer: {
  5. proxy: {
  6. '/api': {
  7. target: '<url>',
  8. ws: true,
  9. changeOrigin: true
  10. },
  11. '/foo': {
  12. target: '<other_url>'
  13. }
  14. }
  15. }
  16. };