vue.config.js 462 B

123456789101112131415161718
  1. module.exports = {
  2. lintOnSave: false,
  3. devServer: {
  4. open: true,
  5. proxy: {
  6. '/api': {
  7. target: 'http://192.168.0.3:19082/',
  8. // target: 'http://192.168.0.165:19082/',
  9. changeOrigin: true,
  10. pathRewrite: {
  11. '^/api': '',
  12. }
  13. }
  14. }
  15. },
  16. // 输出文件目录
  17. outputDir: 'D:/wwwroot/signal_build/build/static',
  18. };