21 lines
407 B
JavaScript
21 lines
407 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
reactStrictMode: true,
|
|
i18n: {
|
|
locales: ['en', 'fr', 'ja', 'es'],
|
|
defaultLocale: 'en',
|
|
},
|
|
images: {
|
|
domains: ['strapi.accords-library.com'],
|
|
},
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/discord',
|
|
destination: 'https://discord.com/invite/5mcXcRAczj',
|
|
permanent: false,
|
|
},
|
|
]
|
|
},
|
|
}
|