disable the caching service worker for now
This commit is contained in:
parent
9c346056ed
commit
f66bc1ccc2
1 changed files with 5 additions and 2 deletions
|
|
@ -2,9 +2,12 @@ import React from 'react';
|
||||||
import ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
|
|
||||||
import App from './App';
|
import App from './App';
|
||||||
import registerServiceWorker from './registerServiceWorker';
|
import { unregister as unregisterServiceWorker } from './registerServiceWorker';
|
||||||
|
|
||||||
import './index.css';
|
import './index.css';
|
||||||
|
|
||||||
ReactDOM.render(<App />, document.getElementById('root'));
|
ReactDOM.render(<App />, document.getElementById('root'));
|
||||||
registerServiceWorker();
|
|
||||||
|
// Disable the service worker to disable caching for now
|
||||||
|
// registerServiceWorker();
|
||||||
|
unregisterServiceWorker();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue