You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 1, 2017. It is now read-only.
My conf is like this:
var cachify = require('connect-cachify') app.use(cachify.setup( getAllWithPublicAsRoot() , { root: path.join(__dirname, 'public'), production: false }));where getAllWithPublicAsRoot returns an object like:
{ "/js/files.min.js":['/js/file1.js', '/js/file2.js'] }where js folder is in public folder.
But if I see the html code in the page, it puts in the html
/js/files.min.js, not the corresponding files specified in the corresponding array.I'm using connect-cachify 0.0.15