commerce/next.config.ts
2025-04-08 19:47:55 +02:00

23 lines
421 B
TypeScript

import { NextConfig } from 'next';
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
images: {
localPatterns: [
{
pathname: '/assets/images/**'
}
],
formats: ['image/avif', 'image/webp'],
remotePatterns: [
{
hostname: '**'
}
]
}
};
export default withNextIntl(nextConfig);