10 lines
230 B
HTML
10 lines
230 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<body>
|
||
|
<script>
|
||
|
navigator.serviceWorker.register('sw.js', {
|
||
|
scope: location.pathname.split('/').slice(0, 2).join('/') + '/'
|
||
|
})
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|