mirror of
https://github.com/ProjectSegfault/website.git
synced 2024-11-08 17:12:24 +05:30
33 lines
583 B
JavaScript
33 lines
583 B
JavaScript
import adapter from '@sveltejs/adapter-static';
|
|
import preprocess from 'svelte-preprocess';
|
|
import icons from 'unplugin-icons/vite'
|
|
import { mdsvex } from "mdsvex";
|
|
|
|
/** @type {import('@sveltejs/kit').Config} */
|
|
const config = {
|
|
// Consult https://github.com/sveltejs/svelte-preprocess
|
|
// for more information about preprocessors
|
|
extensions: [".svelte", ".md"],
|
|
|
|
preprocess: [
|
|
preprocess(),
|
|
mdsvex({
|
|
extensions: [".md"],
|
|
})
|
|
],
|
|
|
|
kit: {
|
|
adapter: adapter(),
|
|
|
|
vite: {
|
|
plugins: [
|
|
icons({
|
|
compiler: 'svelte',
|
|
}),
|
|
],
|
|
},
|
|
}
|
|
};
|
|
|
|
export default config;
|