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

View File

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