-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathastro.config.mjs
More file actions
29 lines (26 loc) · 833 Bytes
/
astro.config.mjs
File metadata and controls
29 lines (26 loc) · 833 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
import { defineConfig } from 'astro/config';
import mdx from "@astrojs/mdx";
import svelte from "@astrojs/svelte";
import vue from "@astrojs/vue";
import react from "@astrojs/react";
import vercel from "@astrojs/vercel/serverless";
import sitemap from "@astrojs/sitemap";
import partytown from "@astrojs/partytown";
import alpinejs from "@astrojs/alpinejs";
import lit from "@astrojs/lit";
import prefetch from "@astrojs/prefetch";
import tailwind from "@astrojs/tailwind";
import solidJs from "@astrojs/solid-js";
// https://astro.build/config
export default defineConfig({
integrations: [mdx(), svelte(), vue(), react(), sitemap(), partytown(), alpinejs(), lit(), prefetch(), tailwind(), solidJs()],
output: "server",
adapter: vercel({
webAnalytics: {
enabled: true
}
}),
server: {
host: true
}
});