diff options
| author | seth <[email protected]> | 2023-05-20 02:33:17 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-05-20 02:33:58 -0400 |
| commit | d0ad2e5d16f62c9a45dafc3eacc814a3b9013d08 (patch) | |
| tree | 9f28500ce0407126597e987db44c681cabe7abe9 /astro.config.ts | |
| parent | 63c4f174c849a41eb0c2b5fc7470151dd1f0277c (diff) | |
rewrite everything in typescript
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()], +}); |
