vue.config.js 271 B

123456789101112131415
  1. module.exports = {
  2. publicPath: "./",
  3. devServer: {
  4. headers: {
  5. "Cache-Control": "no-store",
  6. },
  7. https: false,
  8. proxy: {
  9. "ingest": {
  10. target: "http://192.168.0.17:8080",
  11. changeOrigin: true,
  12. },
  13. },
  14. },
  15. };