Skip to main content

Settings

The Settings tab contains project configuration options.

Custom domain

On paid plans, you can connect a custom domain.

The Settings tab shows:

  • Type: CNAME
  • Target: <your-project>.pages.dev
  • Example record: www.example.com CNAME <your-project>.pages.dev

Add this record at your DNS provider. SSL is provisioned automatically by Cloudflare.

See Custom Domains for full setup instructions.

Deploy tokens (Pro+)

Under Settings → Deploy tokens you can create per-project deploy tokens for CI (for example GitHub Actions). A token authorizes starting a publish for a build that already exists. It is not a replacement for logging in to create or update builds.

  • Tokens are shown once when created; store them in your CI secrets.
  • You can set an optional expiry; leave it empty for a token that does not expire.
  • Revoke a token anytime if it may have leaked.

Use the project UUID, the token, and run micropage projects deploy in CI—see CI/CD and the GitHub Actions walkthrough.

Forms

The Forms section is available on Pro+.

Webhook notifications

Enter an https:// URL to receive a POST request for each new form submission.

To add a webhook URL:

  1. Open Settings → Forms.
  2. Click Add webhook URL.
  3. Enter your endpoint URL (must start with https://).
  4. Click Save webhook URL.

Once saved, every new submission triggers a POST to that URL. The request body is JSON:

{
"id": "uuid",
"project_id": 123,
"form_name": "Contact",
"page_url": "/",
"form_index": 0,
"payload": { "name": "Jane", "email": "[email protected]" },
"submitted_at": "2026-04-02T12:00:00Z"
}

The request also includes an X-Micropage-Submission-Id header with the submission UUID, which you can use to verify the source or deduplicate retries.

To change or remove the URL, use the Change URL or Remove webhook buttons in the same section.

Deleting a project

The Settings tab includes a Delete Project option.

Deleting a project:

  • removes all builds
  • removes all uploaded files
  • removes all form submissions
  • is permanent and cannot be undone

You will be asked to confirm by typing the project name before deletion proceeds.