vue.config.js 434 B

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