forked from files-community/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
svelte.config.js
46 lines (42 loc) · 1.04 KB
/
svelte.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import remarkA11yEmoji from "@fec/remark-a11y-emoji";
import adapter from "@sveltejs/adapter-static";
import { vitePreprocess } from "@sveltejs/vite-plugin-svelte";
import { mdsvex } from "mdsvex";
import rehypeColorPreview from "rehype-color-preview";
import remarkGfm from "remark-gfm";
import remarkGithub from "remark-github";
import remarkSlug from "remark-slug";
import sveltePreprocess from "svelte-preprocess";
/** @type {import("@sveltejs/kit").Config} */
const config = {
extensions: [".svelte", ".md"],
kit: {
alias: {
$data: "src/data",
$layout: "src/layout",
$i18n: "src/i18n",
},
adapter: adapter(),
paths: {
base: "",
},
prerender: {
handleMissingId: "ignore",
},
},
preprocess: [
vitePreprocess(),
mdsvex({
extensions: [".md"],
smartypants: {
dashes: "oldschool",
},
remarkPlugins: [remarkA11yEmoji, remarkSlug, remarkGfm, remarkGithub],
rehypePlugins: [rehypeColorPreview],
}),
sveltePreprocess(),
],
};
// shut up webstorm
// noinspection JSUnusedGlobalSymbols
export default config;