diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 09:02:31 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 09:02:31 +0200 |
| commit | 490214f0a9be03130cf535bc5ae0b8aa3c6c16db (patch) | |
| tree | b972eb6032739b3ac9f09e91dca918b977c1adec /astro.config.mjs | |
| parent | 5ffaa448fbf025faae03756ab7e1ed2bf15507c4 (diff) | |
Add cloudflare adapter
Diffstat (limited to 'astro.config.mjs')
| -rw-r--r-- | astro.config.mjs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/astro.config.mjs b/astro.config.mjs index 30ad428..35434a8 100644 --- a/astro.config.mjs +++ b/astro.config.mjs @@ -1,15 +1,18 @@ // @ts-check import { defineConfig } from 'astro/config'; - import react from '@astrojs/react'; - import tailwindcss from '@tailwindcss/vite'; +import cloudflare from '@astrojs/cloudflare'; + // https://astro.build/config export default defineConfig({ + site: 'https://geshem.space', integrations: [react()], vite: { plugins: [tailwindcss()] - } + }, + + adapter: cloudflare() });
\ No newline at end of file |
