Skip to content

Commit

Permalink
chore: configuration generation
Browse files Browse the repository at this point in the history
  • Loading branch information
gentlementlegen committed Oct 4, 2024
1 parent b0498d3 commit 3ce256f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/worker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export default {
async fetch(request: Request, env: Env): Promise<Response> {
try {
const url = new URL(request.url);
if (url.pathname === "/manifest" && request.method === "GET") {
if (url.pathname === "/manifest.json" && request.method === "GET") {
return new Response(JSON.stringify(manifest), {
headers: { "content-type": "application/json" },
});
Expand Down

0 comments on commit 3ce256f

Please sign in to comment.