This commit is contained in:
2026-01-13 19:03:33 +01:00
parent 65def796ea
commit ceb2ac40ec
14 changed files with 499 additions and 28 deletions

View File

@@ -20,6 +20,40 @@ const nextConfig = {
pagesBufferLength: 2,
},
poweredByHeader: false,
async redirects() {
return [
{
source: '/blog/bulk-qr-codes-excel',
destination: '/blog/bulk-qr-code-generator-excel',
permanent: true,
},
{
source: '/blog/vcard-qr-code-generator',
destination: '/tools/vcard-qr-code',
permanent: true,
},
{
source: '/blog/qr-code-restaurant-menu',
destination: '/dynamic-qr-code-generator',
permanent: true,
},
{
source: '/blog/bulk-qr-code-generator',
destination: '/bulk-qr-code-generator',
permanent: true,
},
{
source: '/blog/qr-code-small-business',
destination: '/signup',
permanent: true,
},
{
source: '/analytics',
destination: '/signup',
permanent: false, // 307 Temporary Redirect as it requires auth eventually
},
];
},
};
export default nextConfig;