Adds redirect for /password (#1162)

This commit is contained in:
Michael Novotny 2023-08-08 15:55:15 -05:00 committed by GitHub
parent 74b5a25120
commit 5f2348d89d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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