Adds redirect for /password

This commit is contained in:
Michael Novotny 2023-08-08 15:25:33 -05:00
parent 857a1df0f6
commit 7526b7e69b
No known key found for this signature in database

View File

@ -16,5 +16,14 @@ module.exports = {
pathname: '/s/files/**'
}
]
},
async redirects() {
return [
{
source: '/password',
destination: '/',
permanent: true
}
];
}
};