ui / next.config.mjs
ZuhairAhmed's picture
downgrade to next 14, theme handling using next-themes and made used of app api router
9f43bd2
Raw
History Blame Contribute Delete
224 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: [],
remotePatterns: [
{
protocol: "https",
hostname: "**",
},
],
},
};
export default nextConfig;