upstream #1

Merged
jblu merged 1007 commits from upstream into main 2024-11-04 22:35:57 -06:00
Showing only changes of commit 5945a72491 - Show all commits

View File

@ -38,4 +38,17 @@ module.exports = withBundleAnalyzer({
return config return config
}, },
async rewrites() {
return {
beforeFiles: [
// Rewrite to prevent a problem when deploying at vercel
// which directs a user to the index.xml instead of index.html
// https://github.com/timlrx/tailwind-nextjs-starter-blog/issues/16
{
source: '/',
destination: '/index',
},
],
}
},
}) })