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