From 5ae47c9bd956ab1bbde0ed1bab2ee21f02d1166c Mon Sep 17 00:00:00 2001 From: Daniel Bulant Date: Thu, 16 Mar 2023 14:52:21 +0100 Subject: [PATCH] warn on missing id but not fail --- svelte.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index f754c81..1453e7e 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -17,7 +17,8 @@ const config = { precompress: true }), prerender: { - origin: "https://danbulant.eu" + origin: "https://danbulant.eu", + handleMissingId: "warn" } }, extensions: ['.svelte', '.md'],