announcements/next.config.ts

17 lines
255 B
TypeScript
Raw Permalink Normal View History

2025-01-22 21:45:11 -08:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
2025-01-22 22:40:19 -08:00
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
hostname: "cdn.nhcarrigan.com",
},
],
},
2025-01-22 21:45:11 -08:00
};
export default nextConfig;