diff --git a/next.config.js b/next.config.js index 65534478..e11c20a3 100644 --- a/next.config.js +++ b/next.config.js @@ -4,4 +4,18 @@ module.exports = { images: { domains: ["upcdn.io", "replicate.delivery"], }, + async redirects() { + return [ + { + source: "/github", + destination: "https://github.com/Nutlope/roomGPT", + permanent: false, + }, + { + source: "/deploy", + destination: "https://vercel.com/templates/next.js/room-GPT", + permanent: false, + }, + ]; + }, };