19 lines
360 B
TypeScript
19 lines
360 B
TypeScript
import type { NextConfig } from "next";
|
||
|
||
const nextConfig: NextConfig = {
|
||
// Skip ESLint during production builds (Vercel) – we can fix lint later
|
||
eslint: {
|
||
ignoreDuringBuilds: true,
|
||
},
|
||
images: {
|
||
remotePatterns: [
|
||
{
|
||
protocol: 'https',
|
||
hostname: 'images.unsplash.com',
|
||
},
|
||
],
|
||
},
|
||
};
|
||
|
||
export default nextConfig;
|