7 lines
190 B
JavaScript
7 lines
190 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
images: { remotePatterns: [{ protocol: "https", hostname: "**" }] },
|
|
};
|
|
module.exports = nextConfig;
|