Files
manoon-headless/next.config.ts
Unchained 6f9081cb52
Some checks are pending
Build and Deploy / build (push) Waiting to run
fix: remove turbopack.root config causing CPU issues and module resolution errors
2026-03-28 19:32:16 +02:00

35 lines
720 B
TypeScript

import createNextIntlPlugin from "next-intl/plugin";
import type { NextConfig } from "next";
const withNextIntl = createNextIntlPlugin();
const nextConfig: NextConfig = {
output: 'standalone',
images: {
remotePatterns: [
{
protocol: "https",
hostname: "manoonoils.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "minio-api.nodecrew.me",
pathname: "/**",
},
{
protocol: "https",
hostname: "api.manoonoils.com",
pathname: "/**",
},
{
protocol: "https",
hostname: "**.saleor.cloud",
pathname: "/**",
},
],
},
};
export default withNextIntl(nextConfig);