From 18211946489065dbaf779eff1a847c148c2f470e Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Sat, 17 Jan 2026 03:12:08 +0100 Subject: [PATCH] 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 --- next.config.mjs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/next.config.mjs b/next.config.mjs index c9403c6..fabed9b 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -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 \ No newline at end of file