From 477b9bf326369b71d97311ed25d59d9bdcc0c40d Mon Sep 17 00:00:00 2001 From: Torsten Dittmann Date: Tue, 19 Sep 2023 20:22:50 +0200 Subject: [PATCH] fix: allow missing id --- svelte.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index 423f6ecbb..b07180b94 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -39,7 +39,8 @@ const config = { $markdoc: './src/markdoc' }, prerender: { - handleHttpError: 'warn' + handleHttpError: 'warn', + handleMissingId: 'warn' }, } };