35 lines
642 B
TypeScript
35 lines
642 B
TypeScript
|
|
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;
|