MengYX
5 years ago
5 changed files with 41 additions and 46 deletions
Before Width: | Height: | Size: 6.7 KiB |
@ -1,32 +1,32 @@ |
|||||
/* eslint-disable no-console */ |
/* eslint-disable no-console */ |
||||
|
|
||||
import { register } from 'register-service-worker' |
import {register} from 'register-service-worker' |
||||
|
|
||||
if (process.env.NODE_ENV === 'production') { |
if (process.env.NODE_ENV === 'production') { |
||||
register(`${process.env.BASE_URL}service-worker.js`, { |
register(`${process.env.BASE_URL}service-worker.js`, { |
||||
ready () { |
ready() { |
||||
console.log( |
console.log( |
||||
'App is being served from cache by a service worker.\n' + |
'App is being served from cache by a service worker.\n' + |
||||
'For more details, visit https://goo.gl/AFskqB' |
'For more details, visit https://goo.gl/AFskqB' |
||||
) |
) |
||||
}, |
}, |
||||
registered () { |
registered() { |
||||
console.log('Service worker has been registered.') |
console.log('Service worker has been registered.') |
||||
}, |
}, |
||||
cached () { |
cached() { |
||||
console.log('Content has been cached for offline use.') |
console.log('Content has been cached for offline use.') |
||||
}, |
}, |
||||
updatefound () { |
updatefound() { |
||||
console.log('New content is downloading.') |
console.log('New content is downloading.') |
||||
}, |
}, |
||||
updated () { |
updated() { |
||||
console.log('New content is available; please refresh.') |
console.log('New content is available; please refresh.') |
||||
}, |
}, |
||||
offline () { |
offline() { |
||||
console.log('No internet connection found. App is running in offline mode.') |
console.log('No internet connection found. App is running in offline mode.') |
||||
}, |
}, |
||||
error (error) { |
error(error) { |
||||
console.error('Error during service worker registration:', error) |
console.error('Error during service worker registration:', error) |
||||
} |
} |
||||
}) |
}) |
||||
} |
} |
||||
|
Loading…
Reference in new issue