Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
20 lines
396 B
TypeScript
20 lines
396 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "images.unsplash.com",
|
|
},
|
|
],
|
|
},
|
|
// Disable static optimization for client-side json-render
|
|
experimental: {
|
|
optimizePackageImports: ["@json-render/react"],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|