diff --git a/next.config.js b/next.config.js index 30c0bd23..05726005 100644 --- a/next.config.js +++ b/next.config.js @@ -21,6 +21,15 @@ const config = withSerwist({ experimental: { reactCompiler: true, }, + async redirects() { + return [ + { + source: "/github", + destination: "https://github.com/FleetAdmiralJakob/chat-io", + permanent: true, + }, + ]; + }, }); export default config;