forked from Xetera/xetera.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathastro.config.mjs
More file actions
44 lines (43 loc) · 1.46 KB
/
Copy pathastro.config.mjs
File metadata and controls
44 lines (43 loc) · 1.46 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
43
44
import "dotenv/config";
import { defineConfig } from "astro/config";
import unocss from "./uno.config.js";
import mdx from "@astrojs/mdx";
import { remarkReadingTime } from "./markdown-utils.mjs";
import UnoCss from "@unocss/astro";
import prefetch from "@astrojs/prefetch";
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({
experimental: { assets: true, viewTransitions: true },
site: process.env.SITE_URL,
markdown: {
remarkPlugins: [
remarkReadingTime,
rehypeSlug,
rehypeAutolinkHeadings,
rehypeExternalLinks,
],
extendDefaultPlugins: true,
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
langs: ["ts", "js", "haskell", "rust"],
// Enable word wrap to prevent horizontal scrolling
wrap: true,
},
},
integrations: [unocss, mdx(), prefetch({ throttle: 3 }), react()],
output: "static",
// adapter: vercel(),
image: {
service: { entrypoint: "astro/assets/services/sharp" },
},
});