vue.config.js 469 B

12345678910111213141516171819
  1. module.exports = {
  2. lintOnSave: false,
  3. devServer: {
  4. proxy: {
  5. '/api': {
  6. target: 'http://192.168.0.3:19095/',
  7. changeOrigin: true,
  8. pathRewrite: {
  9. '^/api': '',
  10. }
  11. }
  12. }
  13. },
  14. // 输出文件目录
  15. outputDir: 'D:/wwwroot/flyLongApp/build',
  16. // outputDir: 'D:/wwwroot/wifiDig/muse/electron/static_mobile',
  17. // publicPath : './',
  18. }