Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to cache api and assets in service worker in vue cli3

import { register } from 'register-service-worker'
import pwa from '@vue/cli-plugin-pwa'

if (process.env.NODE_ENV === 'development') {
// if (process.env.NODE_ENV === 'production') {
console.log(pwa)
register(`${process.env.BASE_URL}service-worker.js`, {
ready () {
    console.log(
      'App is being served from cache by a service worker.\n'
    )
  },
  cached () {
    console.log('Content has been cached for offline use.')
  },
  updated () {
    console.log('New content is available; please refresh.')
  },
  offline () {
    console.log('No internet connection found. App is running in 
    offline mode.')
  },
  error (error) {
    console.error('Error during service worker registration:', error)
  }
})
}

This is my registerserviceworker.js. I tried to implement in this file but i am not able to add files and api in this.

like image 802
SwapRenge Avatar asked Mar 05 '23 16:03

SwapRenge


1 Answers

You have to use the "workboxOptions" inside the PWA Object of the vue.config.js. Like this:

module.exports = {
    pwa: {
        [...]
        workboxOptions: {
            runtimeCaching: [{
                urlPattern: new RegExp('^https://yourpathtothe.api/'),
                handler: 'networkFirst',
                    options: {
                    networkTimeoutSeconds: 20,
                    cacheName: 'api-cache',
                    cacheableResponse: {
                        statuses: [0, 200],
                    },
                },
            }]
        }
    },
like image 130
biellz1221 Avatar answered Mar 09 '23 06:03

biellz1221