procurement-frontend2/next.config.mjs

17 lines
360 B
JavaScript
Raw Permalink Normal View History

2024-08-14 03:51:28 +00:00
import createNextIntlPlugin from "next-intl/plugin";
const withNextIntl = createNextIntlPlugin();
2024-08-13 12:59:05 +00:00
/** @type {import('next').NextConfig} */
2024-08-14 03:51:28 +00:00
const nextConfig = {
images: {
remotePatterns: [
{
2024-09-05 06:08:57 +00:00
protocol: "http",
hostname: "***",
2024-08-14 03:51:28 +00:00
},
],
},
};
2024-08-13 12:59:05 +00:00
2024-08-14 03:51:28 +00:00
export default withNextIntl(nextConfig);