vue.config.js 553 B

123456789101112131415161718192021
  1. module.exports = {
  2. publicPath: process.env.NODE_ENV === 'production'
  3. ? '/h5/'
  4. : '/',
  5. lintOnSave: false,
  6. outputDir: 'h5',
  7. productionSourceMap: false,
  8. // devServer: {
  9. // proxy: {
  10. // '/api': {
  11. // // target: 'http://10.113.233.62:8081/',
  12. // target: 'http://49.232.26.44:8090/',
  13. // ws: true,
  14. // changeOrigin: true,
  15. // pathRewrite: {
  16. // '^/api': ''
  17. // }
  18. // }
  19. // }
  20. // }
  21. }