vue.config.js 407 B

123456789101112131415161718
  1. module.exports = {
  2. publicPath: './',
  3. outputDir: 'dist',
  4. assetsDir: 'static',
  5. runtimeCompiler: true,
  6. devServer: {
  7. proxy: {
  8. '/api': {
  9. target: 'http://192.168.1.21:39092/msg',
  10. changeOrigin: true,
  11. ws: true,
  12. pathRewrite: {
  13. '^/api': ''
  14. }
  15. }
  16. },
  17. }
  18. }