From d0b3403b36fed65768a06d8192bdacaeb9edf948 Mon Sep 17 00:00:00 2001 From: Erik Seliger Date: Tue, 7 Sep 2021 17:18:47 +0200 Subject: [PATCH] Fix gitignore in ui/assets (#24680) After running `yarn build-web`, I got two untracked `.woff2` files in that directory as build artifacts. This excludes them properly. Not sure when we started generating these, though. --- ui/assets/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/assets/.gitignore b/ui/assets/.gitignore index 15c4e1d1c32..309cc5c4831 100644 --- a/ui/assets/.gitignore +++ b/ui/assets/.gitignore @@ -6,4 +6,5 @@ !img/** *.DS_Store *.ttf +*.woff2 *.png