-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathastro.config.mjs
64 lines (63 loc) · 1.51 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
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import solidJs from "@astrojs/solid-js";
import tailwindcss from "@tailwindcss/vite";
import icon from "astro-icon";
import matomo from "astro-matomo";
import astroMetaTags from "astro-meta-tags";
import robotsTxt from "astro-robots-txt";
import { defineConfig } from "astro/config";
import { externalLink } from "./src/utils/external-link";
import { calculateReadingTime } from "./src/utils/reading-time";
// https://astro.build/config
export default defineConfig({
site: "https://blog.pawcode.de",
markdown: {
rehypePlugins: [
[
externalLink,
{
domain: "blog.pawcode.de",
},
],
],
remarkPlugins: [calculateReadingTime],
shikiConfig: {
themes: {
light: "github-light-default",
dark: "github-dark-dimmed",
},
},
remarkRehype: {
footnoteBackContent: "Back to the content",
footnoteLabel: "Footnotes",
footnoteLabelTagName: "h3",
footnoteLabelProperties: {
className: "",
},
},
},
integrations: [
mdx(),
matomo({
enabled: import.meta.env.PROD,
host: "https://analytics.apps.pawcode.de/",
siteId: 9,
disableCookies: true,
heartBeatTimer: 15,
preconnect: true,
}),
sitemap({
changefreq: "monthly",
priority: 0.7,
lastmod: new Date(),
}),
icon(),
astroMetaTags(),
robotsTxt(),
solidJs(),
],
vite: {
plugins: [tailwindcss()],
},
});