/** @type {import('next').NextConfig} */
const nextConfig = {
  eslint: {
    ignoreDuringBuilds: true
  },
  images: {
    remotePatterns: [
      {
        hostname: "cdn.nhcarrigan.com"
      }
    ]
  }
};

export default nextConfig;