Assist_Design/scripts/bundle-analyze.sh

15 lines
287 B
Bash

#!/usr/bin/env bash
set -e
echo "📊 Analyzing bundle sizes..."
# Frontend bundle analysis
echo "🎯 Frontend bundle analysis..."
cd apps/portal
pnpm run build:analyze
echo "✅ Frontend analysis complete - check browser for results"
cd ../..
echo "🎉 Bundle analysis complete!"