fix build
ci / docker_image (push) Failing after 1m49s
ci / deploy (push) Has been skipped

This commit is contained in:
2026-01-24 19:59:26 -06:00
parent 0c56bd2c8a
commit 5349d60a3c
3 changed files with 73 additions and 33 deletions
+6 -5
View File
@@ -1,12 +1,13 @@
import adapter from '@sveltejs/adapter-node';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
import { sveltePreprocess } from 'svelte-preprocess';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: vitePreprocess(),
kit: { adapter: adapter() }
preprocess: sveltePreprocess(),
kit: {
adapter: adapter()
}
};
export default config;