From 57861411f37a07af3cd8fcf1520843e5a5e44bfc Mon Sep 17 00:00:00 2001 From: ivar Date: Wed, 10 Dec 2025 00:17:27 +0100 Subject: Initial commit --- app/svelte.config.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 app/svelte.config.js (limited to 'app/svelte.config.js') diff --git a/app/svelte.config.js b/app/svelte.config.js new file mode 100644 index 0000000..9e2462b --- /dev/null +++ b/app/svelte.config.js @@ -0,0 +1,31 @@ +import adapter from '@sveltejs/adapter-node'; +import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; + +/** @type {import('@sveltejs/kit').Config} */ +const config = { + preprocess: vitePreprocess({ + style: { + css: { + lightningcss: { + targets: ">0.2%", + drafts: { + customMedia: true + } + } + } + } + }), + kit: { + adapter: adapter(), + experimental: { + remoteFunctions: true + } + }, + compilerOptions: { + experimental: { + async: true + } + } +}; + +export default config; -- cgit v1.3