Skip to content

Commit

Permalink
added redirects to github and vercel as url shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
Nutlope committed Mar 6, 2023
1 parent e611fe1 commit b33b016
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
];
},
};

0 comments on commit b33b016

Please sign in to comment.