Files
dashboard-icons/web/next.config.ts
Thomas Camlong 1cc433b6bf chore(deps): update dependencies
- Upgrade Next.js from 15.5.4 to 16.0.1
- Upgrade React from 19.1.1 to 19.2.0
- Upgrade React DOM from 19.1.1 to 19.2.0
- Upgrade PocketBase from 0.26.2 to 0.26.3
- Add cacheComponents: false to Next.js config
2025-11-07 08:10:48 +01:00

11 lines
164 B
TypeScript

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