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
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