Files
roi-theme/.gitignore
FrankZamora 0f947f6677 fix(assets): Add Bootstrap vendor files with PascalCase paths
- Add Assets/Vendor/Bootstrap/ (CSS and JS)
- Add Assets/Vendor/Fonts/ (Bootstrap Icons fonts)
- Fix path references in enqueue-scripts.php to use PascalCase
- Remove vendor/ from .gitignore (not using Composer)

Fixes CSS 404 errors on Linux production server.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 23:04:32 -06:00

78 lines
942 B
Plaintext

# WordPress configuration file
wp-config.php
# Uploads directory (user generated content)
wp-content/uploads/
# Cache directories
wp-content/cache/
wp-content/backup/
wp-content/backups/
wp-content/upgrade/
# Advanced Cache
wp-content/advanced-cache.php
# Object cache
wp-content/object-cache.php
# Server configs
.htaccess
# Log files
*.log
error_log
debug.log
# System files
.DS_Store
Thumbs.db
Desktop.ini
# Temporary files
*.tmp
*.temp
*.swp
*.swo
*~
# Node modules (si hay desarrollo frontend)
node_modules/
npm-debug.log
# PHPUnit
.phpunit.result.cache
/tests/_output/
# Environment files
.env
.env.*
# IDE files
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Git
.git/
# Backup files
*.sql
*.sql.gz
*.tar.gz
*.zip
# Planning and documentation
_planeacion/
# Testing infrastructure (composer, phpunit, phpcs configs and dependencies)
_testing-suite/
# Claude Code tools
.playwright-mcp/
.serena/
.claude/
nul