site: init

This commit is contained in:
Glen Huang
2025-10-06 19:21:01 +08:00
committed by Johannes Kirschbauer
parent 6b5dca5842
commit d92623f07e
26 changed files with 1980 additions and 0 deletions

24
site/svelte.config.js Normal file
View File

@@ -0,0 +1,24 @@
import { mdsvex } from 'mdsvex';
import adapter from '@sveltejs/adapter-auto';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://svelte.dev/docs/kit/integrations
// for more information about preprocessors
preprocess: [
vitePreprocess(),
mdsvex({
extensions: ['.md']
})
],
kit: {
// adapter-auto only supports some environments, see https://svelte.dev/docs/kit/adapter-auto for a list.
// If your environment is not supported, or you settled on a specific environment, switch out the adapter.
// See https://svelte.dev/docs/kit/adapters for more information about adapters.
adapter: adapter()
},
extensions: ['.svelte', '.md']
};
export default config;