feat: added 5 blogs, refactored legals, fixed (side)menu behaviour, made pages uniform
This commit is contained in:
parent
7e37f1bbe0
commit
5f2984824d
24 changed files with 1218 additions and 600 deletions
|
|
@ -1,12 +1,22 @@
|
|||
import adapter from "@sveltejs/adapter-node";
|
||||
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
|
||||
import { mdsvex } from 'mdsvex';
|
||||
|
||||
/** @type {import('@sveltejs/kit').Config} */
|
||||
const config = {
|
||||
// Consult https://svelte.dev/docs/kit/integrations
|
||||
// for more information about preprocessors
|
||||
preprocess: vitePreprocess(),
|
||||
extensions: ['.svelte', '.md'],
|
||||
|
||||
preprocess: [
|
||||
vitePreprocess(),
|
||||
mdsvex({
|
||||
extensions: ['.md']
|
||||
})
|
||||
],
|
||||
|
||||
kit: { adapter: adapter() },
|
||||
};
|
||||
|
||||
|
||||
export default config;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue