diff options
| author | Seth Flynn <[email protected]> | 2025-03-12 20:08:01 -0400 |
|---|---|---|
| committer | Seth Flynn <[email protected]> | 2025-03-12 20:26:38 -0400 |
| commit | 898f1b95c7200a321eb686738e06283fc224959a (patch) | |
| tree | 9249459856535e29d17d563a608b09ccf2344d02 /astro.config.ts | |
| parent | e418edcd965f3a74522adc37b6cc3db11d0ce8f7 (diff) | |
feat: use tailwind and daisyui
Diffstat (limited to 'astro.config.ts')
| -rw-r--r-- | astro.config.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/astro.config.ts b/astro.config.ts index 572107e..6439da2 100644 --- a/astro.config.ts +++ b/astro.config.ts @@ -2,8 +2,13 @@ import { defineConfig } from "astro/config"; import sitemap from "@astrojs/sitemap"; +import tailwindcss from "@tailwindcss/vite"; + // https://astro.build/config export default defineConfig({ site: process.env.CF_PAGES_URL || "https://getchoo.com", integrations: [sitemap()], + vite: { + plugins: [tailwindcss()], + }, }); |
