vue.config.js 404 B

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