accords-library.com/next.config.js

21 lines
407 B
JavaScript
Raw Normal View History

2021-11-03 22:46:45 +00:00
/** @type {import('next').NextConfig} */
module.exports = {
reactStrictMode: true,
i18n: {
2021-12-31 16:20:39 +00:00
locales: ['en', 'fr', 'ja', 'es'],
defaultLocale: 'en',
},
images: {
domains: ['strapi.accords-library.com'],
},
2022-02-14 04:49:43 +00:00
async redirects() {
return [
{
source: '/discord',
destination: 'https://discord.com/invite/5mcXcRAczj',
permanent: false,
},
]
},
2021-11-03 22:46:45 +00:00
}