Redirect all traffic

This commit is contained in:
Brian Lovin 2020-11-24 17:35:23 -08:00
parent 7df54622b4
commit 56f0a5fd1f

View file

@ -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,
},
]
},
};