Initial commit
All checks were successful
Build / build (push) Successful in 17s

This commit is contained in:
2025-12-14 16:48:50 +00:00
commit 97eb93d3af
29 changed files with 3127 additions and 0 deletions

17
svelte.config.js Executable file
View File

@@ -0,0 +1,17 @@
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;