fabro/apps/marketing/astro.config.mjs
Bryan Helmkamp d45b584ccd Update Discord invite link to new community server
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-25 09:46:29 -04:00

24 lines
504 B
JavaScript

import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
integrations: [react()],
redirects: {
"/discord": {
status: 302,
destination:
"https://discord.gg/PxwJ8DQHNE",
},
"/docs": {
status: 302,
destination: "https://docs.fabro.sh",
},
},
vite: {
plugins: [tailwindcss()],
server: {
allowedHosts: [".ngrok-free.app"],
},
},
});