You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mvfront-react/next.config.js

22 lines
407 B

// const {i18n} = require('./next-i18next.config.js');
3 years ago
1 year ago
const remoteImage = process.env.IMGPUSH_URL
? process.env.IMGPUSH_URL.split('/')[-1]
: 'imgpush.mieuxvoter.fr';
3 years ago
module.exports = {
i18n: {
locales: ['en', 'fr'],
defaultLocale: 'en',
},
images: {
remotePatterns: [
{
protocol: 'https',
hostname: remoteImage,
pathname: '**',
},
],
1 year ago
},
3 years ago
};