vue.config.js 389 B

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