From 800fcd8c46f2bb009b2703dff54058230d4ee0cd Mon Sep 17 00:00:00 2001 From: Justin McReynolds Date: Mon, 30 Sep 2024 17:10:35 -0700 Subject: [PATCH] Switch svelte.config.js to use adapter-node instead of adapter-static --- svelte.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/svelte.config.js b/svelte.config.js index ebdfef2f..79804024 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,5 +1,6 @@ import { vitePreprocess } from '@sveltejs/kit/vite'; -import adapter from '@sveltejs/adapter-static'; +//import adapter from '@sveltejs/adapter-static'; +import adapter from '@sveltejs/adapter-node'; const dev = process.argv.includes('dev');