get ngrok preview to work + remove some @todo's

This commit is contained in:
Soph :3 2026-01-11 15:54:23 +02:00
parent 47eb2da5b3
commit 9ffb3cf283
4 changed files with 15 additions and 8 deletions

View file

@ -3,11 +3,16 @@ 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(),
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: { adapter: adapter() }
kit: {
adapter: adapter(),
csrf: {
trustedOrigins: ['*']
}
}
};
export default config;