-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
78 lines (62 loc) · 1.71 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import { defineConfig } from "astro/config";
// import remarkToc from 'https://esm.sh/remark-toc@8'
// import {read} from 'to-vfile'
// import {remark} from 'remark'
// import remarkToc from 'remark-toc'
// import astroRemark from '@astrojs/markdown-remark';
// https://astro.build/config
import tailwind from "@astrojs/tailwind";
// https://astro.build/config
import mdx from "@astrojs/mdx";
// https://astro.build/config
// https://astro.build/config
import react from "@astrojs/react";
// https://astro.build/config
import svelte from "@astrojs/svelte";
// https://astro.build/config
import htmlBeautifier from "astro-html-beautifier";
// https://astro.build/config
// https://astro.build/config
// https://astro.build/config
import preact from "@astrojs/preact";
// https://astro.build/config
import image from "@astrojs/image";
// https://astro.build/config
import prefetch from "@astrojs/prefetch";
// import compress from "astro-compress";
import sitemap from "astro-sitemap";
// https://astro.build/config
export default defineConfig({
// devOptions: {
// tailwindConfig: './tailwind.config.js',
// },
markdown: {
drafts: true,
},
site: "https://impondsk.com",
integrations: [
tailwind({
config: {
applyBaseStyles: false,
path: "./tailwind.config.cjs",
},
}),
mdx({
drafts: true,
// syntaxHighlight: 'shiki',
// shikiConfig: { theme: 'dracula' },
// remarkPlugins: [remarkToc],
// rehypePlugins: [rehypeMinifyHtml],
// remarkRehype: { footnoteLabel: 'Footnotes' },
gfm: false,
}),
react(),
svelte(),
htmlBeautifier(),
preact(),
image(),
prefetch(),
// compress(),
sitemap(),
],
});