From 34358435d6eb55c9ce02699081c1f17c72ee5909 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20St=C3=B8rdal?= <30749741+hakon55@users.noreply.github.com> Date: Wed, 3 Sep 2025 00:05:58 +0200 Subject: [PATCH] Dockerfile --- svelte.config.ts => svelte.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename svelte.config.ts => svelte.config.js (85%) diff --git a/svelte.config.ts b/svelte.config.js similarity index 85% rename from svelte.config.ts rename to svelte.config.js index 68ec437..3b68c6d 100644 --- a/svelte.config.ts +++ b/svelte.config.js @@ -1,8 +1,8 @@ import adapter from '@sveltejs/adapter-node'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; -import type { Config } from '@sveltejs/kit'; -const config: Config = { +/** @type {import('@sveltejs/kit').Config} */ +const config = { // Consult https://svelte.dev/docs/kit/integrations // for more information about preprocessors preprocess: vitePreprocess(),