diff options
| author | Linnea Gräf <nea@nea.moe> | 2024-11-17 03:02:24 +0100 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2024-11-17 04:27:36 +0100 |
| commit | a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea (patch) | |
| tree | 5ab36193b22554346d26d5aca8198ca4402fd5b8 /web/astro.config.mjs | |
| parent | d26852105463a51d5b71eb70fdaba787f0914030 (diff) | |
| download | Firmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.tar.gz Firmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.tar.bz2 Firmament-a1b2a399efd9ff1c8b3b0dfd71b59c7de28728ea.zip | |
feat(web): Add hero image and navbar
Diffstat (limited to 'web/astro.config.mjs')
| -rw-r--r-- | web/astro.config.mjs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/web/astro.config.mjs b/web/astro.config.mjs index 868390f..6f7f837 100644 --- a/web/astro.config.mjs +++ b/web/astro.config.mjs @@ -1,7 +1,9 @@ // @ts-check import { defineConfig } from 'astro/config'; +import tailwind from '@astrojs/tailwind'; + // https://astro.build/config export default defineConfig({ - -}); + integrations: [tailwind()] +});
\ No newline at end of file |
