From 14214386cf7a13e1601d00cdefe6a6ad98647498 Mon Sep 17 00:00:00 2001 From: Ugo Palatucci Date: Tue, 9 Jan 2024 15:27:45 +0100 Subject: [PATCH] Add Cache-control no store on dev --- webpack.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.ts b/webpack.config.ts index 3fdf95c6..ea213801 100644 --- a/webpack.config.ts +++ b/webpack.config.ts @@ -92,6 +92,7 @@ const config: WebpackConfiguration & { 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, PATCH, OPTIONS', 'Access-Control-Allow-Headers': 'X-Requested-With, Content-Type, Authorization', + 'Cache-Control': 'no-store', }, devMiddleware: { writeToDisk: true,