mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-09-09 22:33:37 +00:00
Add install.sh serving and /discord, /docs redirects to marketing site
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
b491542e95
commit
cd786bb875
3 changed files with 27 additions and 0 deletions
|
|
@ -4,6 +4,17 @@ import tailwindcss from "@tailwindcss/vite";
|
|||
|
||||
export default defineConfig({
|
||||
integrations: [react()],
|
||||
redirects: {
|
||||
"/discord": {
|
||||
status: 302,
|
||||
destination:
|
||||
"https://discord.com/channels/1256822430505373696/1481682824196128822",
|
||||
},
|
||||
"/docs": {
|
||||
status: 302,
|
||||
destination: "https://docs.fabro.sh",
|
||||
},
|
||||
},
|
||||
vite: {
|
||||
plugins: [tailwindcss()],
|
||||
},
|
||||
|
|
|
|||
1
apps/marketing/public/install.sh
Symbolic link
1
apps/marketing/public/install.sh
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
../../../install.sh
|
||||
15
apps/marketing/vercel.json
Normal file
15
apps/marketing/vercel.json
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
"$schema": "https://openapi.vercel.sh/vercel.json",
|
||||
"redirects": [
|
||||
{
|
||||
"source": "/discord",
|
||||
"destination": "https://discord.com/channels/1256822430505373696/1481682824196128822",
|
||||
"statusCode": 302
|
||||
},
|
||||
{
|
||||
"source": "/docs",
|
||||
"destination": "https://docs.fabro.sh",
|
||||
"statusCode": 302
|
||||
}
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue