From 1f4900dd1eadd80a62e64fb78951b093b08ade96 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 10 Feb 2026 16:30:16 +0200 Subject: [PATCH] fix(desktop): print failing on upgrade due to cache issues --- apps/client/vite.config.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/vite.config.mts b/apps/client/vite.config.mts index 62d8330403..716ec8b912 100644 --- a/apps/client/vite.config.mts +++ b/apps/client/vite.config.mts @@ -95,7 +95,7 @@ export default defineConfig(() => ({ output: { entryFileNames: (chunk) => { // We enforce a hash in the main index file to avoid caching issues, this only works because we have the HTML entry point. - if (chunk.name === "index") { + if (chunk.name === "index" || chunk.name === "print") { return "src/[name]-[hash].js"; }