General
Troubleshooting
Customization
Learn about customization troubles and their solutions.
Tailwind styles not applying
If Tailwind styles aren't being applied:
- Make sure the file is included in
app/globals.cssusing@sourcedirectives - Check that
@import 'tailwindcss'is present in your global CSS - Restart your development server after changing Tailwind configuration
- Clear the Next.js cache:
rm -rf .next
Component styles not working
If component styles aren't working:
- Verify that the component is importing the correct CSS
- Check that Tailwind is properly configured
- Make sure you're using the correct class names
- Check for any CSS conflicts or overrides
Theme not applying
If theme changes aren't working:
- Check that the theme provider is wrapping your app
- Verify theme configuration in your config files
- Clear browser cache and cookies
- Check that theme variables are correctly defined