From 04b26ffeb33e58c3f34aa0f7dad67081319811ea Mon Sep 17 00:00:00 2001 From: Jiachi Liu Date: Thu, 22 Jun 2023 13:32:42 +0200 Subject: [PATCH] chore: make next/src/build files indexable on github (#51647) `build/` folder is by default ignored by github, need to make them indexable for file searching x-ref: https://docs.github.com/en/search-github/searching-on-github/finding-files-on-github#customizing-excluded-files --- .gitattributes | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitattributes b/.gitattributes index 08f58f77658a7..76dba02a8984d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,2 +1,5 @@ packages/next/bundles/** -text packages/next/compiled/** -text + +# Make next/src/build folder indexable for github search +packages/next/src/build/** linguist-generated=false