Files
dashboard-icons/web/next.config.ts
2025-11-20 11:12:02 +01:00

17 lines
310 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
cacheComponents: false,
images: {
remotePatterns: [
new URL(
"https://pb.dashboardicons.com/**",
),
new URL(
"https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/**",
),
],
},
};
export default nextConfig