abdul544

Joined

50 Experience
0 Lessons Completed
0 Questions Solved

Activity

Posted in Service worker view patch does not working in cached

I want to add a view file inside cached but it doesn't work.
How to call view Patch in cache?
//serviceworker.js.erb
ar CACHE_VERSION = 'v1';
var CACHE_NAME = CACHE_VERSION + ':sw-cache-';

function onInstall(event) {
console.log('[Serviceworker]', "Installing!", event);
event.waitUntil(
caches.open(CACHE_NAME).then(function prefill(cache) {
return cache.addAll([

    // make sure serviceworker.js is not required by application.js
    // if you want to reference application.js from here
    '<%#= asset_path "application.js" %>',

    '<%= asset_path "application.css" %>',

    '/offline.html',
            **'/views/user/index.haml' ** //Uncaught (in promise) TypeError: Request failed


  ]);
})

);
}