friends-best/next.config.js

31 lines
744 B
JavaScript
Raw Normal View History

2021-07-23 18:35:41 +00:00
const { i18n } = require('./next-i18next.config');
2021-07-23 16:28:40 +00:00
2021-07-23 16:14:54 +00:00
module.exports = {
2021-07-23 18:35:41 +00:00
i18n,
2021-07-23 16:14:54 +00:00
reactStrictMode: true,
2021-07-23 16:28:40 +00:00
async redirects() {
return [
{
source: '/discord',
2021-07-24 20:04:47 +00:00
destination: 'https://discord.gg/YoungRoyals',
2021-07-23 16:28:40 +00:00
permanent: true
2021-07-23 18:35:41 +00:00
},
{
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
2021-07-24 13:31:40 +00:00
},
{
source: '/gay-bible',
destination: 'https://www.goodreads.com/book/show/36256691-the-holy-bible-but-gayer',
permanent: true
2021-07-23 16:28:40 +00:00
}
]
}
2021-07-23 16:14:54 +00:00
}