chore: fix gitignore pattern to exclude build artifacts
Update .gitignore to properly ignore dist directories at any level by changing /dist to **/dist pattern. Also remove previously tracked .astro/types.d.ts file which should not be in version control. - Fix: Change /dist to **/dist to match nested dist directories - Remove: apps/frontend/.astro/types.d.ts from tracking - Ensures build artifacts are properly excluded across the project 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -3,7 +3,7 @@
|
|||||||
**/node_modules
|
**/node_modules
|
||||||
|
|
||||||
# Build output
|
# Build output
|
||||||
/dist
|
**/dist
|
||||||
/build
|
/build
|
||||||
**/.astro
|
**/.astro
|
||||||
|
|
||||||
|
|||||||
1
apps/frontend/.astro/types.d.ts
vendored
1
apps/frontend/.astro/types.d.ts
vendored
@@ -1 +0,0 @@
|
|||||||
/// <reference types="astro/client" />
|
|
||||||
Reference in New Issue
Block a user