wtfhappenedinfeb2023/next.config.js
2024-03-25 09:51:59 +01:00

24 lines
391 B
JavaScript

const withNextra = require("nextra")("nextra-theme-docs", "./theme.config.js");
module.exports = withNextra({
i18n: {
locales: ['en'],
defaultLocale: 'en'
},
async redirects() {
return [
// Basic redirect
{
source: '/install.html',
destination: '/',
permanent: true,
},
{
source: '/install',
destination: '/',
permanent: true,
},
]
}
});