Vercel limits on the free plan

Turns out I'm limited to 100 deployments a day on the free plan. Now for a hobbyist that should be plenty, but I actually reached the daily limit a The other day trying to figure out the transclusion issue.

I should probably just test the changes locally

flowchart LR
    subgraph "Local Deployment"
        direction TB
        Dev1[/"Source Code"/] --> Build1["Local Build"]
        Build1 --> Server1["Local Server"]
        Server1 --> Browser1["Local Browser"]
        
        style Dev1 fill:#e1f5fe,stroke:#01579b,color:#000000
        style Build1 fill:#e8f5e9,stroke:#1b5e20,color:#000000
        style Server1 fill:#fff3e0,stroke:#e65100,color:#000000
        style Browser1 fill:#f3e5f5,stroke:#4a148c,color:#000000
    end
Mar 23 Mar 25