feat: add /invite redirect to invite.jefflix.lol

Redirects jefflix.lol/invite to the Wizarr invite system at invite.jefflix.lol

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2026-01-17 03:12:08 +01:00
parent f66e6d7434
commit 1821194648
1 changed files with 9 additions and 0 deletions

View File

@ -7,6 +7,15 @@ const nextConfig = {
unoptimized: true,
},
output: 'standalone',
async redirects() {
return [
{
source: '/invite',
destination: 'https://invite.jefflix.lol',
permanent: true,
},
]
},
}
export default nextConfig