diff --git a/next.config.js b/next.config.js index 264049a..e6eebb9 100644 --- a/next.config.js +++ b/next.config.js @@ -8,4 +8,18 @@ module.exports = { return config; }, + async redirects() { + return [ + { + source: '/', + destination: 'https://brianlovin.com/security', + permanent: true, + }, + { + source: '/about', + destination: 'https://brianlovin.com/security', + permanent: true, + }, + ] + }, };