From e4f845b4b59cab02801d0b4fe2d77ab3f5ab7f8a Mon Sep 17 00:00:00 2001 From: Jiachi Liu Date: Tue, 15 Aug 2023 00:17:34 +0200 Subject: [PATCH] chore: mark build folder indexable (#54029) x-ref: https://github.com/vercel/next.js/pull/51647 follow up for the code indexing issue for "build/**" folder, previous solution seem not working, trying just "build/**" without prefix --- .gitattributes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitattributes b/.gitattributes index 76dba02a8984d..21621715952fa 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,4 +2,4 @@ packages/next/bundles/** -text packages/next/compiled/** -text # Make next/src/build folder indexable for github search -packages/next/src/build/** linguist-generated=false +build/** linguist-generated=false