-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathastro.config.mjs
46 lines (45 loc) · 1.29 KB
/
astro.config.mjs
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 { defineConfig } from "astro/config";
import Icons from "unplugin-icons/vite";
import vue from "@astrojs/vue";
import remarkGfm from "remark-gfm";
import remarkSmartypants from "remark-smartypants";
import remarkDirective from "remark-directive";
import rehypeSlug from "rehype-slug";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
import mdx from "@astrojs/mdx";
// https://astro.build/config
export default defineConfig({
integrations: [vue(), mdx()],
// legacy: {
// astroFlavoredMarkdown: true,
// },
markdown: {
remarkPlugins: [remarkGfm, remarkSmartypants, remarkDirective],
rehypePlugins: [
rehypeSlug,
[
rehypeAutolinkHeadings,
{
behavior: "prepend",
content: {
type: "text",
value: "#",
},
},
],
],
},
vite: {
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler",
},
},
},
plugins: [Icons({})],
ssr: {
external: ["@fortawesome/fontawesome-svg-core", "@fortawesome/free-solid-svg-icons"],
},
},
});