From 0366da2067d5db7dbe5d9fde75326f6b09f94d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20M=C3=A4hr?= Date: Thu, 25 Jan 2024 20:15:34 +0100 Subject: [PATCH] fix: add handleMissingId --- svelte.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index 5ce6406e..a3f65cf1 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -22,7 +22,8 @@ const config = { adapter: adapter(), // do not abort on build errors prerender: { - handleHttpError: 'warn' + handleHttpError: 'warn', + handleMissingId: 'warn' } } };