LLC/next.config.mjs

16 lines
371 B
JavaScript
Raw Permalink Normal View History

2025-02-10 19:37:08 +03:30
/** @type {import('next').NextConfig} */
2025-02-20 14:53:06 +03:30
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
2025-02-19 16:11:53 +03:30
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "storage.adhorizonintl.com",
}
],
},
};
2025-02-10 19:37:08 +03:30
2025-02-20 14:53:06 +03:30
export default withNextIntl(nextConfig);