no-op-worker.js 147 B

12345678910
  1. export default {
  2. fetch() {
  3. return new Response("Not found", {
  4. status: 404,
  5. headers: {
  6. "Content-Type": "text/html",
  7. },
  8. });
  9. },
  10. };