From eacecb4dab34b3f24c9c22170164429311567508 Mon Sep 17 00:00:00 2001 From: Akemi Izuko Date: Mon, 25 Dec 2023 22:27:19 -0700 Subject: [PATCH] Dependency: astro config --- astro.config.mjs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 astro.config.mjs diff --git a/astro.config.mjs b/astro.config.mjs new file mode 100644 index 0000000..b3815c5 --- /dev/null +++ b/astro.config.mjs @@ -0,0 +1,14 @@ +import { defineConfig } from 'astro/config'; +import mdx from '@astrojs/mdx'; +import sitemap from '@astrojs/sitemap'; +import cloudflare from "@astrojs/cloudflare"; + +import tailwind from "@astrojs/tailwind"; + +// https://astro.build/config +export default defineConfig({ + site: 'https://example.com', + integrations: [mdx(), sitemap(), tailwind()], + output: "server", + adapter: cloudflare() +}); \ No newline at end of file