Skip to content

Commit

Permalink
Merge branch 'main' into staging
Browse files Browse the repository at this point in the history
  • Loading branch information
zackproser committed Feb 2, 2024
2 parents 2017506 + be80b98 commit db34617
Show file tree
Hide file tree
Showing 10 changed files with 63 additions and 15,716 deletions.
12 changes: 11 additions & 1 deletion next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,17 @@ const nextConfig = {
"@react-email/render",
"@react-email/html",
],
};
async redirects() {
// Permanently redirect what was my old /about page to the homepage
return [
{
source: '/about',
destination: '/',
permanent: true,
},
]
},
}

const withMDX = nextMDX({
extension: /\.mdx?$/,
Expand Down
Loading

0 comments on commit db34617

Please sign in to comment.