procurement-frontend2/next.config.mjs
2024-08-14 09:51:28 +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: "https",
hostname: "**",
},
],
},
};
export default withNextIntl(nextConfig);