Files
mortgagefi-helper/next.config.ts
2025-12-16 10:15:01 +04:00

17 lines
324 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Produce a self-contained server bundle at .next/standalone
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
],
},
};
export default nextConfig;