mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
26 lines
546 B
JavaScript
26 lines
546 B
JavaScript
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: [
|
|
mdsvex({
|
|
extensions: [".md"]
|
|
}),
|
|
vitePreprocess(),
|
|
],
|
|
extensions: [".svelte", ".md"],
|
|
|
|
kit: {
|
|
adapter: adapter(),
|
|
alias: {
|
|
$components: "src/components",
|
|
$lib: "src/lib",
|
|
}
|
|
}
|
|
};
|
|
|
|
export default config;
|