vue.config.js 279 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: process.env.VUE_APP_API_URL_PREFIX,
  11. changeOrigin: true,
  12. },
  13. },
  14. },
  15. };