diff --git a/next.config.js b/next.config.js index 8e05b6d1..5233935a 100644 --- a/next.config.js +++ b/next.config.js @@ -37,6 +37,20 @@ const nextConfig = { return config; }, + async redirects() { + return [ + { + source: '/review', + destination: '/blog', + permanent: false, + }, + { + source: '/sopticle', + destination: '/blog', + permanent: false, + }, + ]; + }, }; module.exports = nextConfig;