-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
38 lines (36 loc) · 946 Bytes
/
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
import { defineConfig } from "astro/config"
import mdx from "@astrojs/mdx"
import sitemap from "@astrojs/sitemap"
// import githubFetchIntegration from "./src/lib/github-fetch-integration"
import svelte from "@astrojs/svelte"
import tailwind from "@astrojs/tailwind"
function prependImageSrcPlugin() {
return (tree) => {
function visit(node) {
if (node.type === "image" && node.url) {
// if node.url does not have scheme, prepend with /images/
if (!node.url.startsWith("http")) {
node.url = `/images/${node.url}`
}
}
if (node.children) {
node.children.forEach(visit)
}
}
visit(tree)
}
}
// https://astro.build/config
export default defineConfig({
site: "https://garden.narze.live",
integrations: [
mdx(),
sitemap(),
// githubFetchIntegration(),
svelte(),
tailwind(),
],
markdown: {
remarkPlugins: [prependImageSrcPlugin],
},
})