18 lines
406 B
JavaScript
Executable File
18 lines
406 B
JavaScript
Executable File
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;
|