From 56f0a5fd1fb85e198e15e58cb28c8a57752cc1c4 Mon Sep 17 00:00:00 2001 From: Brian Lovin Date: Tue, 24 Nov 2020 17:35:23 -0800 Subject: [PATCH] Redirect all traffic --- next.config.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) 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, + }, + ] + }, };