mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
87c4e98fa5
* add sw-precache example * remove npm run dev command
22 lines
538 B
JavaScript
22 lines
538 B
JavaScript
import React from 'react'
|
|
|
|
export default class extends React.PureComponent {
|
|
componentDidMount() {
|
|
if ('serviceWorker' in navigator) {
|
|
navigator.serviceWorker
|
|
.register('/service-worker.js')
|
|
.then(registration => {
|
|
console.log('service worker registration successful')
|
|
})
|
|
.catch(err => {
|
|
console.warn('service worker registration failed')
|
|
})
|
|
}
|
|
}
|
|
render() {
|
|
return (
|
|
<p>Check the console for the Service Worker registration status.</p>
|
|
)
|
|
}
|
|
}
|