Skip to content

Commit

Permalink
fix: service worker integration
Browse files Browse the repository at this point in the history
remove forced error (used to test registration error handling)
  • Loading branch information
jbmoelker committed Jan 11, 2025
1 parent d048c36 commit 4f9c35a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/astro/service-worker-integration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ export const GET: APIRoute = async () => {
sourcemap: false,
});

return new Response('x' + output.outputFiles[0].contents, {
return new Response(output.outputFiles[0].contents, {
status: 200,
headers: {
'Content-Type': 'application/javascript',
Expand Down

0 comments on commit 4f9c35a

Please sign in to comment.