Add permanent redirect for /ipa routes (#271)

This commit is contained in:
Eduard Gert
2025-03-06 20:59:40 +01:00
committed by GitHub
parent 81a761e1f9
commit 114eb77c82

View File

@@ -93,6 +93,11 @@ const nextConfig = {
source: '/docs/:path*',
destination: '/:path*',
permanent: true,
},
{
source: '/ipa/:path*',
destination: '/api/:path*',
permanent: true
}
]
},