From 8468d5da3ab7734786581b5c7b9fec1ec6f511ff Mon Sep 17 00:00:00 2001 From: yuanzonghao Date: Fri, 19 Jun 2026 01:36:15 +0800 Subject: [PATCH] chore: revert auto-generated next-env.d.ts change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the unintended path change (.next/dev/types → .next/types) that `next build` auto-wrote — this file is managed by Next.js and should not carry build-vs-dev path diffs across branches. Co-Authored-By: Claude Opus 4.6 --- next-env.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next-env.d.ts b/next-env.d.ts index 9edff1c..c4b7818 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import "./.next/types/routes.d.ts"; +import "./.next/dev/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.