vue.config.js 496 B

12345678910111213141516171819
  1. module.exports = {
  2. lintOnSave: false,
  3. devServer: {
  4. port: 8183, // 端口
  5. proxy: {
  6. '/api': {
  7. target: 'http://192.168.0.3:19097/',
  8. changeOrigin: true,
  9. pathRewrite: {
  10. '^/api': '',
  11. }
  12. }
  13. }
  14. },
  15. // 输出文件目录
  16. outputDir: 'D:\\wwwroot\\flyLongOnLineApp\\build',
  17. // outputDir: 'D:\\wwwroot\\flyLong\\hbuild\\onlinebuild',
  18. publicPath: '',
  19. }