feat: added 5 blogs, refactored legals, fixed (side)menu behaviour, made pages uniform

This commit is contained in:
Luka Dekanozishvili 2026-01-25 00:34:06 +01:00
parent 7e37f1bbe0
commit 5f2984824d
24 changed files with 1218 additions and 600 deletions

View file

@ -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;