procurement-frontend2/next.config.mjs
2024-09-05 12:08:57 +06:00

17 lines
360 B
JavaScript

import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "http",
hostname: "***",
},
],
},
};
export default withNextIntl(nextConfig);