Declaritively initializing service worker
This commit is contained in:
parent
fd5a8786d0
commit
6bf094a4c1
@ -4,9 +4,12 @@ import ReactDOM from 'react-dom';
|
||||
import App from '../../components/App';
|
||||
|
||||
import '../../style.css';
|
||||
import '../../service-worker';
|
||||
import { setupServiceWorker } from '../../service-worker';
|
||||
import { setupGA } from '../../analytics';
|
||||
|
||||
if (process.env.NODE_ENV === 'production') {
|
||||
setupServiceWorker();
|
||||
}
|
||||
setupGA();
|
||||
|
||||
ReactDOM.render(<App/>, document.getElementById('root'));
|
||||
|
@ -1,11 +1,15 @@
|
||||
if ('serviceWorker' in navigator && process.env.NODE_ENV === 'production') {
|
||||
window.addEventListener('load', () => {
|
||||
navigator.serviceWorker.register('/sw.js')
|
||||
.then(registration => {
|
||||
console.log('SW registered:', registration); // eslint-disable-line no-console
|
||||
})
|
||||
.catch(registrationError => {
|
||||
console.log('SW registration failed:', registrationError); // eslint-disable-line no-console
|
||||
});
|
||||
});
|
||||
}
|
||||
const setupServiceWorker = () => {
|
||||
if ('serviceWorker' in navigator) {
|
||||
window.addEventListener('load', () => {
|
||||
navigator.serviceWorker.register('/sw.js')
|
||||
.then(registration => {
|
||||
console.log('SW registered:', registration); // eslint-disable-line no-console
|
||||
})
|
||||
.catch(registrationError => {
|
||||
console.log('SW registration failed:', registrationError); // eslint-disable-line no-console
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
export { setupServiceWorker };
|
||||
|
Loading…
Reference in New Issue
Block a user