Update .gitignore to exclude specific files

This commit is contained in:
ISA
2024-04-15 13:57:30 +02:00
parent b07322e49f
commit 06ca0b1ab1
6 changed files with 26 additions and 20 deletions

15
.gitignore vendored
View File

@@ -12,4 +12,17 @@
# OS generated files # OS generated files
.DS_Store .DS_Store
Thumbs.db Thumbs.db
# Cache files
.next/cache/webpack/*.gz
# Ignoring trace files
trace
# Webpack cache files
.next/cache/webpack/client-development/*.gz
.next/cache/webpack/server-development/*.gz
# Ignore specific Next.js build files
pages-manifest.json

View File

@@ -1,6 +1,6 @@
{ {
"/_error": "pages/_error.js",
"/_app": "pages/_app.js", "/_app": "pages/_app.js",
"/_error": "pages/_error.js",
"/_document": "pages/_document.js", "/_document": "pages/_document.js",
"/": "pages/index.js", "/": "pages/index.js",
"/api/locations": "pages/api/locations.js" "/api/locations": "pages/api/locations.js"

View File

@@ -153,7 +153,7 @@
/******/ /******/
/******/ /* webpack/runtime/getFullHash */ /******/ /* webpack/runtime/getFullHash */
/******/ !function() { /******/ !function() {
/******/ __webpack_require__.h = function() { return "6c0e643e45ecca33"; } /******/ __webpack_require__.h = function() { return "79d56825454c319a"; }
/******/ }(); /******/ }();
/******/ /******/
/******/ /* webpack/runtime/global */ /******/ /* webpack/runtime/global */

File diff suppressed because one or more lines are too long