# ServiceWorker

Register a PWA service worker. The invisible magic that makes your web app work even when the wifi dies.

## Notes

- Treat service worker registration as additive.
- Do not assume every consumer wants offline behavior.



## Example

```astro
<ServiceWorker src="/sw.js" scope="/" />
```
