diff options
author | Linnea Gräf <nea@nea.moe> | 2025-07-10 14:32:48 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2025-07-10 14:33:00 +0200 |
commit | ea50a4e324b92c2bddf1637cd7b1eb7ed2312014 (patch) | |
tree | 9efc8796257d5501319a8f60d17353ea65e35b8a /web/astro.config.mjs | |
parent | d243701a5b9f953ff1401f0d30d0f424e2cd3dc6 (diff) | |
download | Firmament-ea50a4e324b92c2bddf1637cd7b1eb7ed2312014.tar.gz Firmament-ea50a4e324b92c2bddf1637cd7b1eb7ed2312014.tar.bz2 Firmament-ea50a4e324b92c2bddf1637cd7b1eb7ed2312014.zip |
feat(web): discord redirect
Diffstat (limited to 'web/astro.config.mjs')
-rw-r--r-- | web/astro.config.mjs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web/astro.config.mjs b/web/astro.config.mjs index 6f7f837..061f596 100644 --- a/web/astro.config.mjs +++ b/web/astro.config.mjs @@ -5,5 +5,8 @@ import tailwind from '@astrojs/tailwind'; // https://astro.build/config export default defineConfig({ - integrations: [tailwind()] -});
\ No newline at end of file + integrations: [tailwind()], + redirects: { + "/discord": "https://discord.com/invite/64pFP94AWA", + }, +}); |