12 lines
228 B
JavaScript
12 lines
228 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
reactStrictMode: true,
|
|
i18n: {
|
|
locales: ['en', 'fr', 'ja', 'es'],
|
|
defaultLocale: 'en',
|
|
},
|
|
images: {
|
|
domains: ['strapi.accords-library.com'],
|
|
},
|
|
}
|