Step 3: Configure & Deploy

Define your build pipeline and trigger your first deployment to our global edge network.

💡 Pro Tip .git auto-detects your framework (React, Next.js, Vite, Svelte, etc.). The configuration below is a suggested starting point.
.git/config.yaml
# .git/config.yaml name: deploy-pipeline version: "2" triggers: - event: push branch: main - event: pull_request auto_preview: true build: command: npm run build output_dir: dist node_version: lts deploy: target: edge regions: [us-east-1, eu-west-1, ap-southeast-1] env: production cache: true
Ready to deploy to 3 regions.
Initializing build context...
Installing dependencies...
Build successful (2.4s)
Uploading assets to edge network...
Deployed to us-east-1, eu-west-1, ap-southeast-1
SSL certificate provisioned
🚀 Deployment complete!
https://your-project.git.dev
Visit your dashboard to monitor performance.
← Back to Step 2 Step 4: Monitor & Scale →