mirror of
https://github.com/servo/servo.git
synced 2025-07-12 09:53:40 +01:00
5 lines
184 B
JavaScript
5 lines
184 B
JavaScript
self.addEventListener('fetch', function(event) {
|
|
event.respondWith(new Response(
|
|
'<body>Generated by service worker</body>',
|
|
{headers:[['content-type', 'text/html']]}));
|
|
});
|