forked from files-community/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvelte.config.js
46 lines (42 loc) · 994 Bytes
/
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 path from "path";
import adapter from "@sveltejs/adapter-netlify";
import sveltePreprocess from "svelte-preprocess";
import autoprefixer from "autoprefixer";
import { mdsvex } from "mdsvex";
import remarkGfm from "remark-gfm";
import remarkA11yEmoji from "@fec/remark-a11y-emoji";
import remarkSlug from "remark-slug";
import remarkGithub from "remark-github";
/** @type {import("@sveltejs/kit").Config} */
const config = {
extensions: [".svelte", ".svx"],
kit: {
target: "body",
router: true,
vite: {
resolve: {
alias: {
$static: path.resolve("./static"),
$data: path.resolve("./src/data"),
$layout: path.resolve("./src/layout")
}
}
},
adapter: adapter()
},
preprocess: [
mdsvex({
extensions: [".svx"],
smartypants: {
dashes: "oldschool"
},
remarkPlugins: [remarkA11yEmoji, remarkSlug, remarkGfm, remarkGithub]
}),
sveltePreprocess({
postcss: {
plugins: [autoprefixer()]
}
})
]
};
export default config;