From 9478d7b1246fdfb9ae8e20bef68f47ab5153e5b2 Mon Sep 17 00:00:00 2001 From: Ashley Date: Mon, 9 Oct 2023 03:36:25 +0100 Subject: [PATCH] Ignore .vite files in Git The .gitignore file has been updated to exclude .vite files from being tracked in Git. This change prevents .vite files from cluttering the repository and helps maintain a clean commit history. .vite files are typically generated by Vite, a build tool for web applications. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5a71bf71b..508424eac 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ delete/ *.backup swagger.json dev-dist +.vite # Created by https://www.toptal.com/developers/gitignore/api/pycharm,flask,python # Edit at https://www.toptal.com/developers/gitignore?templates=pycharm,flask,python