From 66ed33343cb137ccfa2ff585d815445e40781481 Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Sun, 15 Mar 2026 20:12:08 +0000 Subject: [PATCH] Ignore HTTP errors for now. --- svelte.config.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index b9cddac..b017e64 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -9,7 +9,11 @@ const config = { fallback: 'index.html', precompress: 'true', strict: 'true' - }) + }), + prerender: { + // Temporary option during testing + handleHttpError: 'ignore' + } } };