mirror of
https://github.com/walkxcode/dashboard-icons.git
synced 2025-11-18 17:47:30 +01:00
- 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
11 lines
164 B
TypeScript
11 lines
164 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
cacheComponents: false,
|
|
};
|
|
|
|
export default nextConfig
|