fix(web): ensure web/dist exists in fresh clones (#3114)
The Rust build expects web/dist to exist (static assets). Track an empty placeholder via web/dist/.gitkeep and adjust ignore rules to keep build artifacts ignored while allowing the placeholder file. Made-with: Cursor
This commit is contained in:
parent
2eaa8c45f4
commit
23a0f25b44
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,7 +1,8 @@
|
||||
/target
|
||||
/target-*/
|
||||
firmware/*/target
|
||||
web/dist/
|
||||
web/dist/*
|
||||
!web/dist/.gitkeep
|
||||
*.db
|
||||
*.db-journal
|
||||
.DS_Store
|
||||
|
||||
3
web/.gitignore
vendored
3
web/.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
node_modules/
|
||||
dist/
|
||||
dist/*
|
||||
!dist/.gitkeep
|
||||
|
||||
3
web/dist/.gitkeep
vendored
Normal file
3
web/dist/.gitkeep
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
|
||||
|
||||
""
|
||||
Loading…
Reference in New Issue
Block a user