aboutsummaryrefslogtreecommitdiffstats
path: root/app/svelte.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/svelte.config.js')
-rw-r--r--app/svelte.config.js31
1 files changed, 0 insertions, 31 deletions
diff --git a/app/svelte.config.js b/app/svelte.config.js
deleted file mode 100644
index 9e2462b..0000000
--- a/app/svelte.config.js
+++ /dev/null
@@ -1,31 +0,0 @@
-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;