diff options
Diffstat (limited to 'svelte.config.js')
| -rw-r--r-- | svelte.config.js | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/svelte.config.js b/svelte.config.js index 511d6e1d..1f92f2c7 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,20 +1,20 @@ -import adapter from '@sveltejs/adapter-vercel'; -import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; +import adapter from "@sveltejs/adapter-vercel"; +import { vitePreprocess } from "@sveltejs/vite-plugin-svelte"; // /** @type {import('@sveltejs/adapter-vercel').Config} */ /** @type {import('@sveltejs/kit').Config} */ const config = { - preprocess: vitePreprocess(), - kit: { - adapter: adapter({ runtime: 'nodejs22.x' }), - alias: { - $stores: './src/stores', - $styles: './src/styles', - $graphql: './src/graphql', - $houdini: './$houdini' - } - }, - split: true + preprocess: vitePreprocess(), + kit: { + adapter: adapter({ runtime: "nodejs22.x" }), + alias: { + $stores: "./src/stores", + $styles: "./src/styles", + $graphql: "./src/graphql", + $houdini: "./$houdini", + }, + }, + split: true, }; export default config; |