cozynet/next.config.js

29 lines
507 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {};
module.exports = nextConfig;
module.exports = {
eslint: {
// Warning: This allows production builds to successfully complete even if
// your project has ESLint errors.
ignoreDuringBuilds: true,
reactStrictMode: true,
},
};
module.exports = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
module.exports = {
images: {
unoptimized: true,
},
};