-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathastro.config.ts
More file actions
42 lines (41 loc) · 1.47 KB
/
Copy pathastro.config.ts
File metadata and controls
42 lines (41 loc) · 1.47 KB
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
import "dotenv/config";
import { defineConfig, sharpImageService } from "astro/config";
import { unified } from "@astrojs/markdown-remark";
import unocss from "./uno.config";
import mdx from "@astrojs/mdx";
import { remarkReadingTime } from "./markdown-utils";
import sitemap from "@astrojs/sitemap";
import react from "@astrojs/react";
import rehypeExternalLinks from "rehype-external-links";
import rehypeAutolinkHeadings from "rehype-autolink-headings";
import rehypeSlug from "rehype-slug";
// https://astro.build/config
export default defineConfig({
site: process.env.SITE_URL,
compressHTML: true,
markdown: {
processor: unified({
smartypants: false,
remarkPlugins: [remarkReadingTime],
rehypePlugins: [rehypeSlug, rehypeAutolinkHeadings, rehypeExternalLinks],
}),
shikiConfig: {
// Choose from Shiki's built-in themes (or add your own)
// https://github.com/shikijs/shiki/blob/main/docs/themes.md
theme: "css-variables",
// theme: 'min-light',
// Add custom languages
// Note: Shiki has countless langs built-in, including .astro!
// https://github.com/shikijs/shiki/blob/main/docs/languages.md
// @ts-expect-error | the types here are wrong for some reason
langs: ["ts", "js", "haskell", "rust"],
// Enable word wrap to prevent horizontal scrolling
wrap: true,
},
},
integrations: [unocss, mdx(), react(), sitemap()],
output: "static",
image: {
service: sharpImageService(),
},
});