2023-09-15 18:26:22 -05:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
|
2023-09-17 20:21:46 -05:00
|
|
|
import cloudflare from "@astrojs/cloudflare";
|
|
|
|
|
2023-09-15 18:26:22 -05:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
2023-09-17 20:21:46 -05:00
|
|
|
integrations: [tailwind()],
|
|
|
|
output: "server",
|
2024-03-28 13:14:41 -05:00
|
|
|
adapter: cloudflare(),
|
2023-09-15 18:26:22 -05:00
|
|
|
});
|