This commit is contained in:
Léo Haf 2024-03-25 09:42:02 +01:00
parent 8c142f1c16
commit 97007139cc
Signed by: Retropex
GPG Key ID: 0E37EBAB8574F005

View File

@ -4,5 +4,21 @@ module.exports = withNextra({
i18n: {
locales: ['en'],
defaultLocale: 'en'
}
},
async redirects() {
return [
// Basic redirect
{
source: '/install.html',
destination: '/',
permanent: true,
},
{
source: '/install',
destination: '/',
permanent: true,
},
]
}
});