Skip to content

Commit

Permalink
feat: Add redirect from /resume to google drive link
Browse files Browse the repository at this point in the history
  • Loading branch information
rudyorre committed Feb 5, 2024
1 parent b13bc64 commit 3841806
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ const nextConfig = {
images: {
unoptimized: true,
},
async redirects() {
return [
{
source: '/resume',
destination: 'https://drive.google.com/file/d/1p8nSZYy8jgPrRdBCm4CZ3DQBhIJKudbN/view?usp=sharing',
permanent: false,
basePath: false
},
]
},
}

module.exports = nextConfig

0 comments on commit 3841806

Please sign in to comment.