diff --git a/products/workers/src/content/examples/http2-server-push.md b/products/workers/src/content/examples/http2-server-push.md index e3eb1c1a2e2cf7b..01a3797f12221ca 100644 --- a/products/workers/src/content/examples/http2-server-push.md +++ b/products/workers/src/content/examples/http2-server-push.md @@ -32,7 +32,7 @@ const HTML = ` async function handleRequest(request) { // If request is for test.css, serve the raw CSS - if (/test.css$/.test(request.url)) { + if (/test\.css$/.test(request.url)) { return new Response(CSS, { headers: { "content-type": "text/css",