From 44a9669bfdf155ced7266ad62b012f51fcc52643 Mon Sep 17 00:00:00 2001 From: 0d0 <0d0acre@esiliati.org> Date: Wed, 26 Feb 2025 16:08:07 +0100 Subject: [PATCH] Add env file for static building --- svelte.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index 24f1256..422a36d 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -10,7 +10,7 @@ const config = { preprocess: [vitePreprocess(), mdsvex()], kit: { - adapter: process.env.STATIC_BUILD ? adapterStatic({ strict: false}) : adapterNode() + adapter: process.env.STATIC_BUILD ? adapterStatic({ strict: false }) : adapterNode() }, extensions: ['.svelte', '.svx']