Files
klz-cables.com/next.config.mjs
2026-01-16 21:47:58 +01:00

20 lines
398 B
JavaScript

import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'klz-cables.com',
port: '',
pathname: '/wp-content/uploads/**',
},
],
},
};
export default withNextIntl(nextConfig);