Features
xSpeed Hub Pricing Docs Blog Scan
Appearance
Get Plugin
69of 100

dummyforms.com

Scanned Sun, 20 Sep 2026 19:46:56 GMT · https://dummyforms.com/

DLevel 3 · Average
Lovable
Desktop view of dummyforms.com at scan time. Click for full size
As Lighthouse saw it · click to enlarge
292msTTFB
83Lighthouse desktop · graded
57Lighthouse mobile
1.9sLCP
0.01CLS
brCompression
MISSCache

Lab data: Lighthouse 13.4.1 desktop run, graded above · Reproduce this run on PageSpeed Insights ↗ · Mobile: 49 (F) —

Why is this different from the score in my browser?

The graded score is the desktop run. Lighthouse 13.4.1 runs at Google through the PageSpeed Insights API on a desktop profile with no CPU or network throttling — close to what Chrome DevTools on a laptop, GTmetrix's default test and the PageSpeed API (which defaults to desktop) all measure, so this is the number you should be able to reproduce: run it yourself on PageSpeed Insights.

Google ranks on mobile. That run happens too, on an emulated mid-range Android with a 4× CPU slowdown and a throttled connection, and the same page routinely scores 30–50 points lower there. Neither number is wrong — they are different tests. On this page the mobile run scored 49 (F) against 69 (D) here — to see every check graded on that run.

Lighthouse also varies a few points run to run on the same URL. Treat a trend across several scans as the signal, never a single digit.

Lab data: Google PageSpeed Insights (Lighthouse, desktop). Server probes (TTFB, compression, cache, headers) are measured separately from Vilnius, Lithuania (EU).

Lovable what actually works on this platform

Lovable apps run as Cloudflare Workers, and the platform rewrites Cache-Control after your code returns. The usual caching advice does not apply — these are the fixes that do.

  • Served from the platform edge with no-cache on the HTML — the expected fingerprint, and not something a header change can fix.
  • A crawler reads about 46 characters of text from your HTML — thin enough that search engines and AI assistants see close to a blank page.
  • Time to first byte measured 292ms on this run — one sample, so treat it as a hypothesis and re-run six times before acting.
  1. Measure first, six runs, take the median. A cold worker isolate inflates the first request on almost every Lovable site — often 4-5x the median. One request, or an average that includes run 1, invents a problem that is not there.
  2. Do not try to fix this with Cache-Control headers. Lovable runs apps as dynamically-loaded Cloudflare Workers. The hosting layer rewrites Cache-Control after your worker returns, and the Cache API throws. Any header-level fix is discarded — the win has to come from inside the application.
  3. Find out which stack the project is. TanStack Start (server-rendered, has src/routes/) and Vite React SPA (client-rendered, has src/App.tsx) have different problems and different fixes. This cannot be told from the outside — the response headers are byte-identical — so check the repo before changing anything.
  4. Give crawlers something to read. Put each route's real content in the initial HTML, route-appropriate rather than a copy of the homepage. Emitting it into the shared shell instead makes every other route pay for content only one page needs, which shows up as every route converging on one identical time.
  5. If TanStack Start: cache the render in two tiers. An in-isolate LRU alone hits about 1 request in 6, because traffic spreads across isolates that do not share memory. Put a shared store (KV, or a table keyed on URL) behind it and the hit rate goes to roughly 7-8 in 8. Emit an x-app-cache: HIT-MEMORY|HIT-SHARED|MISS header while you measure — a HIT that is still slow proves the cost is cold start, not the cache.
  6. If Vite SPA: the bundle is the cost, not the server. TTFB is usually fine; what feels slow is downloading, parsing and executing JavaScript before anything appears. Split routes with lazy imports, prefetch the chunk on hover, and measure the JS transferred before first paint rather than TTFB.
  7. Never cache an authenticated route. Serving one visitor a page rendered for another is far worse than a slow site. Keep /admin, /profile and anything carrying credentials off the cache, and verify a logged-out fetch renders the signed-out view before you enable public caching.
  8. Press Publish. Lovable syncs code to git automatically but does NOT deploy. Production keeps serving the previous build until someone presses Publish — this is the most common reason a real fix looks like it did nothing.

The full instruction set, and a machine-readable copy of this report, live at dummyforms.com.md — paste that URL into your AI builder's chat and it can work straight from these measurements.

Top fixes ranked by points recovered · desktop

This is a Lovable site — act on the report with your AI assistant

  1. Platform detectedLovable — every check below links the official guideline for the fix in this stack.
  2. Act on it with your AIThe machine-readable twin of this report gives an agent every failing check with its evidence, remediation and guideline link.
  3. Check the originHosting sets the floor on TTFB. xCloud hosts any stack — agent/MCP access built in, bring-your-own-server pricing.

xSpeed is a WordPress plugin, so it can't automate Lovable fixes — and that's fine. Every check below links its official guideline, and the machine-readable twin of this report gives an AI everything it needs to plan the work (8 checks name a concrete remediation):

Read the speed report at https://xspeedcache.com/scan/r/dummyforms-com-f911b120cb.md — it lists every failing check with evidence and the official guideline for the fix. Produce a prioritized fix plan for my Lovable site, apply what you can, then re-test by POSTing {"url":"https://dummyforms.com/"} to https://xspeedcache.com/api/scan and compare the scores.
How the checks are graded Scan another site
Hosting is half of every score. Whatever the stack — Lovable included, the server behind it sets the floor on TTFB. xCloud — from the team behind xSpeed — hosts any platform (this site's own scanner runs on it), with agent/MCP access built in and bring-your-own-server pricing. Explore xCloud.host →

Connect this scanner to your AI assistant

Free. No API key, no sign-up. Scan any public site and get the same graded report as this one, with the fix for every failing check.

Endpoint

https://xspeedcache.com/scan/mcp

Claude Code — one command

claude mcp add --transport http xspeed-scan https://xspeedcache.com/scan/mcp

Claude Desktop, Cursor, or any MCP client — add to your config

{ "mcpServers": { "xspeed-scan": { "type": "http", "url": "https://xspeedcache.com/scan/mcp" } } }
  • run_speed_scan Scan any public URL and return this whole graded report.
  • get_speed_scan Read a scan already run, by its id.
Read the MCP documentation →
A

Core Web Vitals & lab metrics

4/5 checks passed · 36.9/40 pts earned
92/100
Partial
Lighthouse performance score (desktop) 14.9/18 pts
83/100 (Lighthouse 13.4.1, desktop)
The composite Lighthouse score — every fix below moves it.
xSpeed Free AI Optimize
AI promptUsing my site's xSpeed MCP connection: run optimize_site, then run_benchmark to verify the score improved.
Pass
Largest Contentful Paint ≤ 2.5s 8/8 pts
LCP 1.9s
Pass
Cumulative Layout Shift ≤ 0.1 5/5 pts
CLS 0.008
Pass
Total Blocking Time ≤ 200ms 5/5 pts
TBT 50ms
Pass
First Contentful Paint ≤ 1.8s 4/4 pts
FCP 1.5s
F

Server response & caching

2/6 checks passed · 13.5/27 pts earned
50/100
Partial
Time to first byte ≤ 200ms 4/8 pts
TTFB 292ms measured from Vilnius, Lithuania (EU) (best of 2 requests). This includes the network round trips between us and your origin, not just server time. Google measured your server responding in 1ms from its own network — the gap between the two numbers is distance, not your server.
The server rebuilds the page on every request. A page cache answers in 5–15ms.
xSpeed Free Page Cache
AI promptUsing my site's xSpeed MCP connection: enable page caching and warm this page with the preloader, then re-check TTFB.
Fail
Page served from cache 0/7 pts
No cache evidence in headers or HTML
Serve HTML from a static cache instead of rebuilding it per visitor.
xSpeed Free Page Cache + Preloader
AI promptUsing my site's xSpeed MCP connection: enable page caching, start the preloader so pages are pre-warmed, and confirm get_cache_status reports hits.
Pass
HTML compression (Brotli/GZIP) 5/5 pts
Content-Encoding: br
Partial
Efficient cache policy on static assets 2.5/5 pts
Lighthouse cache-policy audit score 50% — 6 files: WN5274VQ3AUBDFP74GB4EC4XYJ3EKVNE.woff2 (cdn.fontshare.com), NXM4Z4TDCMYWBZ7AVI2N6DQ5VMWNENMU.woff2 (cdn.fontshare.com), 4CO2ETY7NITKLUDKMYJ75RHJSPHOJ7XT.woff2 (cdn.fontshare.com)…
Every asset with a short cache lifetime here is served by another host (cdn.fontshare.com, api.fontshare.com, cdn.gpteng.co). Their Cache-Control is not yours to set — this check will not clear while you load them.
xSpeed Free Browser Cache
AI promptUsing my site's xSpeed MCP connection: enable browser-cache headers for static assets, then re-run the audit.
Info
CDN / edge network
No CDN signature detected
Optional: put a CDN or Cloudflare in front for global edge delivery.
xSpeed Free Cloudflare integration / CDN rewriter
AI promptUsing my site's xSpeed MCP connection: connect Cloudflare (or configure the CDN rewriter) and purge, then re-scan.
Pass
Clean redirect chain 2/2 pts
No redirects — the URL answers directly
F

Asset optimization

2/5 checks passed · 7/16 pts earned
44/100
Fail
No render-blocking resources 0/5 pts
Fails the Lighthouse audit — 8 files: index-DP26UA-x.css, css (api.fontshare.com), css2 (fonts.googleapis.com)… · ~450ms of first paint
Inline the critical CSS and defer the rest. Note that 7 of these come from another host, so deferring them is the only lever you have.
xSpeed Pro Critical CSS + Unused CSS removal
AI promptUsing my site's xSpeed MCP connection: generate critical CSS for the top pages and enable unused-CSS removal, then re-test.
Pass
Minified CSS and JavaScript 4/4 pts
Passes the Lighthouse audit
Fail
Modern, optimized image formats 0/4 pts
Fails the Lighthouse audit — 8 files: walmart.png, coinbase.png, meta.png… · ~150ms of first paint
Serve WebP/AVIF at the right compression — usually the single largest byte saving.
xSpeed Pro Image Converter (WebP/AVIF)
AI promptUsing my site's xSpeed MCP connection: enable WebP/AVIF conversion with URL rewriting, then re-test image audits.
Info
LCP image discoverable early
Audit not reported for this page
Re-run when Lighthouse is available.
xSpeed Free Resource Hints (preload) + Lazy Load exclusions
AI promptUsing my site's xSpeed MCP connection: preload the LCP image for this page and exclude it from lazy loading, then re-test LCP.
Pass
Total page weight ≤ 1.5MB 3/3 pts
1.4MB transferred

Share your score a card for X, LinkedIn, Slack — anywhere

Every check here has a one-click fix in xSpeed Cache

xSpeed is launching soon — page caching, compression, image optimization and a built-in MCP server so your AI assistant can run this playbook for you. Early users get in first.

Scan dummyforms-com-f911b120cb · rubric v2026.09.5 · Lab data: Google PageSpeed Insights (Lighthouse 13.4.1), graded on the desktop run; the mobile run is graded on its tab · Server probes from xspeedcache.com. Scores vary run to run; treat trends, not single digits, as the signal. Markdown for AI agents · JSON
Own dummyforms.com and would rather this report were not public? Email support@wpdeveloper.com and we will remove it.