crush-level-web/next.config.ts

35 lines
642 B
TypeScript
Raw Permalink Normal View History

2025-11-13 08:38:25 +00:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
eslint: {
ignoreDuringBuilds: true,
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "picsum.photos",
},
{
protocol: "https",
hostname: "public-pictures.epal.gg",
},
{
protocol: "https",
hostname: "hhb.crushlevel.ai",
},
{
protocol: "https",
hostname: "sub.crushlevel.ai",
},
{
protocol: "https",
hostname: "img.crushlevel.ai",
}
],
},
};
export default nextConfig;