?
Build Fails
Problem: Build command returns errors
Solutions:
# Check Nushell version
nu --version
# Clean and retry
nu scripts/dev.nu clean
nu scripts/dev.nu build --verbose
?
Server Won't Start
Problem: Development server fails to start
Solutions:
# Check if port is in use
netstat -an | grep 8080
# Use different port
nu scripts/dev.nu --port 3000
?
Files Too Large
Problem: Optimized files still too large
Solutions:
# Edit config/build.config.nu for more aggressive optimization:
export const config = {
svg_precision: 1, # Less precision
inline_css_max_size: 5120, # 5KB threshold
critical_css_modules: 1 # Less inline CSS
}
?
Animations Broken
Problem: SVG animations not working after optimization
Solution:
Animated SVGs must remain inline. Check that critical animations are in the HTML file, not external SVG files.
The build system automatically handles this for you.
🆘 Interactive Troubleshooter
Select your issue for specific guidance: