-
Notifications
You must be signed in to change notification settings - Fork 105
Expand file tree
/
Copy pathastro.config.mjs
More file actions
35 lines (34 loc) · 810 Bytes
/
astro.config.mjs
File metadata and controls
35 lines (34 loc) · 810 Bytes
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
import db from "@astrojs/db";
import mdx from "@astrojs/mdx";
import react from "@astrojs/react";
import sitemap from "@astrojs/sitemap";
import tailwind from "@astrojs/tailwind";
import vercel from "@astrojs/vercel/serverless";
import icon from "astro-icon";
import { defineConfig } from "astro/config";
import simpleStackForm from "simple-stack-form";
// https://astro.build/config
export default defineConfig({
site: "https://astro-nomy.vercel.app",
integrations: [
mdx({
syntaxHighlight: "shiki",
shikiConfig: {
theme: "github-dark-dimmed",
},
gfm: true,
}),
icon(),
sitemap(),
react(),
tailwind({
applyBaseStyles: false,
}),
db(),
simpleStackForm(),
],
output: "hybrid",
adapter: vercel({
analytics: true,
}),
});