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,4 +1,5 @@
|
||||
if ('serviceWorker' in navigator && process.env.NODE_ENV === 'production') {
|
||||
const setupServiceWorker = () => {
|
||||
if ('serviceWorker' in navigator) {
|
||||
window.addEventListener('load', () => {
|
||||
navigator.serviceWorker.register('/sw.js')
|
||||
.then(registration => {
|
||||
@ -9,3 +10,6 @@ if ('serviceWorker' in navigator && process.env.NODE_ENV === 'production') {
|
||||
});
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
export { setupServiceWorker };
|
||||
|
Loading…
Reference in New Issue
Block a user