Files
dashboard-icons/web/next.config.ts
2025-11-21 14:41:44 +01:00

10 lines
164 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
cacheComponents: false,
images: {
unoptimized: true,
},
};
export default nextConfig