Files
greywall-landing-page/next.config.mjs
2026-03-09 13:39:15 -04:00

18 lines
286 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
ignoreBuildErrors: true,
},
images: {
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'github.com',
},
],
},
}
export default nextConfig