friends-best/next.config.js

14 lines
214 B
JavaScript
Raw Normal View History

2021-07-23 16:28:40 +00:00
2021-07-23 16:14:54 +00:00
module.exports = {
reactStrictMode: true,
2021-07-23 16:28:40 +00:00
async redirects() {
return [
{
source: '/discord',
destination: 'https://discord.gg/ugxv4ZrVjC',
permanent: true
}
]
}
2021-07-23 16:14:54 +00:00
}