Files
woonoow-docs/next.config.mjs
2025-05-03 21:10:51 +07:00

15 lines
208 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
export default nextConfig;