2024-01-05 06:57:30 +00:00
|
|
|
/** @type {import('next').NextConfig} */
|
2024-03-08 03:28:18 +00:00
|
|
|
const nextConfig = {
|
2025-02-04 08:31:04 +00:00
|
|
|
eslint: {
|
|
|
|
|
ignoreDuringBuilds: true,
|
|
|
|
|
},
|
|
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
hostname: "*",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
};
|
2024-01-05 06:57:30 +00:00
|
|
|
|
2025-02-04 08:31:04 +00:00
|
|
|
module.exports = nextConfig;
|