aboutsummaryrefslogtreecommitdiff
path: root/web/astro.config.mjs
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-11-17 03:02:24 +0100
committerLinnea Gräf <nea@nea.moe>2024-11-17 04:01:42 +0100
commit46e436ca043c7a969e3296b368cc4a14550e375c (patch)
tree80d13bd80402768296a794fe5927992be2ab7a5a /web/astro.config.mjs
parent5cfe3b72609a361abad791cb95ade2d8e7af0181 (diff)
downloadFirmament-46e436ca043c7a969e3296b368cc4a14550e375c.tar.gz
Firmament-46e436ca043c7a969e3296b368cc4a14550e375c.tar.bz2
Firmament-46e436ca043c7a969e3296b368cc4a14550e375c.zip
feat(web): Add hero image and navbar
Diffstat (limited to 'web/astro.config.mjs')
-rw-r--r--web/astro.config.mjs6
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