- Added a minimal `tailwind.min.css` with utilities tailored to app needs (`app/web/dist/`). - Updated `.gitignore` to include specific `dist/` paths while maintaining clean build artifacts. - Added local `dist` files (`index.css`, `index.js`) for better control over UI styling and build outputs.
30 lines
299 B
Plaintext
30 lines
299 B
Plaintext
# Dependencies
|
|
node_modules
|
|
.pnp
|
|
.pnp.js
|
|
|
|
# Bun
|
|
.bunfig.toml
|
|
bun.lockb
|
|
|
|
# Build directories
|
|
build
|
|
|
|
# Cache and logs
|
|
.cache
|
|
.temp
|
|
.log
|
|
*.log
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Editor directories and files
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo |