From f505bde9ea21533d1d6e44771e3ceb17121c19fe Mon Sep 17 00:00:00 2001 From: kaleb tsegaye Date: Wed, 21 Jan 2026 10:45:53 +0300 Subject: [PATCH] Update migration instructions for Next.js removal Removed additional configuration files related to Next.js migration. removed files: next-env.d.ts, proxy.ts(nextjs 16) and middleware.ts(optional) --- docs/start/framework/react/migrate-from-next-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/start/framework/react/migrate-from-next-js.md b/docs/start/framework/react/migrate-from-next-js.md index cad771e0dfa..e36613d9e8b 100644 --- a/docs/start/framework/react/migrate-from-next-js.md +++ b/docs/start/framework/react/migrate-from-next-js.md @@ -47,7 +47,7 @@ First, uninstall Next.js and remove related configuration files: ```sh npm uninstall @tailwindcss/postcss next -rm postcss.config.* next.config.* +rm postcss.config.* next.config.* next-env.d.ts proxy.ts middleware.ts ``` ### 2. Install Required Dependencies