mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
- Remove Font Awesome files from public/assets and update .gitignore - Switch from CDN to local npm package for Font Awesome - Update BaseLayout.astro to use Font Awesome from node_modules - Add specific gitignore patterns for vendor files - Keep public/assets directory structure for future custom assets This change improves the project by: 1. Using proper dependency management through npm 2. Reducing external dependencies on CDN 3. Maintaining cleaner source control 4. Following best practices for vendor file management
38 lines
422 B
Plaintext
38 lines
422 B
Plaintext
# build output
|
|
dist/
|
|
.output/
|
|
.astro/
|
|
.wrangler/
|
|
|
|
# dependencies
|
|
node_modules/
|
|
|
|
# vendor files
|
|
public/assets/fontawesome/
|
|
node_modules/@fortawesome/
|
|
|
|
# logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# environment variables
|
|
.env
|
|
.env.production
|
|
|
|
# DevContainer environment files
|
|
.devcontainer/.env
|
|
|
|
# macOS-specific files
|
|
.DS_Store
|
|
|
|
# IDE specific files
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Test coverage
|
|
coverage/
|
|
|