-
Notifications
You must be signed in to change notification settings - Fork 0
/
astro.config.mjs
57 lines (56 loc) · 1.24 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
import mdx from "@astrojs/mdx";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import vercel from "@astrojs/vercel";
import swup from "@swup/astro";
import AutoImport from "astro-auto-import";
import { defineConfig, envField } from "astro/config";
// https://astro.build/config
export default defineConfig({
output: "server",
adapter: vercel(),
site: "https://souvlaki.me",
prefetch: {
prefetchAll: true
},
env: {
schema: {
GITHUB_TOKEN: envField.string({ context: "server", access: "secret" }),
SHOW_DRAFTS: envField.boolean({
context: "server",
access: "public",
default: process.env.NODE_ENV !== "production"
})
}
},
integrations: [
tailwind(),
AutoImport({
imports: ["./src/components/Code.astro"]
}),
mdx(),
sitemap({
xslURL: "/pretty-feed-v3.xsl"
}),
swup({
progress: true,
accessibility: true,
forms: true,
cache: false,
preload: {
hover: true,
visible: false
},
smoothScrolling: true
})
],
markdown: {
syntaxHighlight: "shiki",
gfm: true,
smartypants: true,
shikiConfig: {
theme: "catppuccin-mocha",
wrap: true
}
}
});