2023-09-12 23:34:20 +01:00
|
|
|
import { defineConfig } from 'astro/config';
|
2023-09-13 02:07:52 +01:00
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
import mdx from "@astrojs/mdx";
|
|
|
|
import partytown from "@astrojs/partytown";
|
|
|
|
import sitemap from "@astrojs/sitemap";
|
|
|
|
import prefetch from "@astrojs/prefetch";
|
|
|
|
|
|
|
|
import cloudflare from "@astrojs/cloudflare";
|
2023-09-12 23:34:20 +01:00
|
|
|
|
|
|
|
// https://astro.build/config
|
2023-09-13 02:07:52 +01:00
|
|
|
export default defineConfig({
|
|
|
|
integrations: [tailwind(), mdx(), partytown(), sitemap(), prefetch()],
|
|
|
|
output: "server",
|
2023-09-19 03:20:29 +01:00
|
|
|
adapter: cloudflare(),
|
|
|
|
redirects: {
|
|
|
|
}
|
2023-09-13 02:07:52 +01:00
|
|
|
});
|