friends-best/next.config.js
2021-07-23 17:28:40 +01:00

14 lines
214 B
JavaScript

module.exports = {
reactStrictMode: true,
async redirects() {
return [
{
source: '/discord',
destination: 'https://discord.gg/ugxv4ZrVjC',
permanent: true
}
]
}
}