Files
mortgagefi-helper/next.config.ts

21 lines
448 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Skip ESLint during production builds (Vercel) we can fix lint later
eslint: {
ignoreDuringBuilds: true,
},
// Produce a self-contained server bundle at .next/standalone
output: 'standalone',
images: {
remotePatterns: [
{
protocol: 'https',
hostname: 'images.unsplash.com',
},
],
},
};
export default nextConfig;