Skip to content

Commit e9bc723

Browse files
authored
Merge pull request #3 from Markeljan/claude/upgrade-nextjs-15.5.9-iaXXv
Upgrade Next.js to 15.5.9 and React to 19.0.0
2 parents 85c9d1a + bb40f99 commit e9bc723

5 files changed

Lines changed: 5577 additions & 10 deletions

File tree

components/theme-provider.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
'use client';
22

3-
import { ThemeProvider as NextThemesProvider } from 'next-themes';
4-
import type { ThemeProviderProps } from 'next-themes/dist/types';
3+
import { ThemeProvider as NextThemesProvider, type ThemeProviderProps } from 'next-themes';
54

65
export function ThemeProvider({ children, ...props }: ThemeProviderProps) {
76
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;

next-env.d.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3+
/// <reference path="./.next/types/routes.d.ts" />
34

45
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
6+
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

next.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
import type { NextConfig } from 'next';
22

33
const nextConfig: NextConfig = {
4-
experimental: {
5-
ppr: true,
6-
},
74
images: {
85
remotePatterns: [
96
{

0 commit comments

Comments
 (0)