Initial commit

This commit is contained in:
titver968
2025-02-25 15:30:55 +01:00
parent c2cd5a1069
commit ea1a39d1cb
21 changed files with 5392 additions and 0 deletions

15
tatort/svelte.config.js Normal file
View File

@@ -0,0 +1,15 @@
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: {
adapter: adapter()
}
};
export default config;