import adapter from "@sveltejs/adapter-static"; import sveltePreprocess from "svelte-preprocess"; import path from 'path'; /** @type {import('@sveltejs/kit').Config} */ const config = { kit: { adapter: adapter(), alias: { "content-collections": "./.content-collections/generated", } }, extensions: [".svelte", ".md"], preprocess: [sveltePreprocess()], }; export default config;