diff options
Diffstat (limited to 'astro.config.ts')
| -rw-r--r-- | astro.config.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/astro.config.ts b/astro.config.ts new file mode 100644 index 0000000..edacb13 --- /dev/null +++ b/astro.config.ts @@ -0,0 +1,7 @@ +import { defineConfig } from "astro/config"; +import tailwind from "@astrojs/tailwind"; + +export default defineConfig({ + site: "https://mydadleft.me", + integrations: [tailwind()], +}); |
