Part 9: Troubleshooting - When Things Go Wrong
· One min read
Software development is a series of moments when you transition from denial to acceptance. Let's catalog the disasters.
"Module Not Found"
Fix: Update import paths to use @site/src/components/
"Tailwind Classes Not Working"
Fix: Use Tailwind v3.4.1, not v4. Check content paths. Set preflight: false.
"Modal/Overlay Not Appearing"
Fix: Add z-index: 9999 !important to modal CSS.
"Changes Not Appearing"
Fix: npm run clear && npm start
The Universal Troubleshooting Protocol
- Read the error message entirely
- Clear the cache
- Check recent changes
- Isolate the problem
- Search the error
- Check Docusaurus issues on GitHub
