Cloudflare Pages

SEO checks on every Cloudflare Pages build.

Indxel integrates with Cloudflare Pages through your build command. Add the check step to your build configuration, and every deploy is validated against 15 SEO rules before going live.

1.Set your build command in Cloudflare Pages

toml
# In Cloudflare Pages dashboard or wrangler.toml
# Build command:
npm run build && npx indxel check --ci

# Or in wrangler.toml:
[site]
bucket = ".next"
build.command = "npm run build && npx indxel check --ci"

2.Add environment variables

bash
# In Cloudflare Pages dashboard → Settings → Environment variables
INDXEL_API_KEY = "your-api-key"
NODE_VERSION = "20"

Why use Indxel with Cloudflare Pages

  • Validate SEO during the build phase before your site goes live on Cloudflare's edge network
  • Catch missing meta tags, broken og:images, and invalid structured data on every push
  • Works with any framework deployed to Cloudflare Pages — Next.js, Astro, Nuxt, SvelteKit
  • Push audit results to the Indxel dashboard for historical tracking and team visibility

Frequently asked questions

Does Indxel work with Cloudflare Pages?

Yes. Add npx indxel check --ci to your build command in Cloudflare Pages. The check runs after your build completes and fails the deployment if critical SEO issues are found.

Can I validate preview deployments?

Yes. Cloudflare Pages creates preview URLs for each branch. Use the crawl mode to validate preview deployments before merging to production.