friends-best/next.config.js
2021-07-24 21:04:47 +01:00

31 lines
744 B
JavaScript

const { i18n } = require('./next-i18next.config');
module.exports = {
i18n,
reactStrictMode: true,
async redirects() {
return [
{
source: '/discord',
destination: 'https://discord.gg/YoungRoyals',
permanent: true
},
{
source: '/reddit',
destination: 'https://www.reddit.com/r/YoungRoyals/',
permanent: true
},
{
source: '/watch',
destination: 'https://www.netflix.com/gb/title/81210762?s=i&trkid=13747225&vlang=en&clip=81459758',
permanent: true
},
{
source: '/gay-bible',
destination: 'https://www.goodreads.com/book/show/36256691-the-holy-bible-but-gayer',
permanent: true
}
]
}
}