How to enable caching of JS and CSS files on Dispatcher
I added the below in dispatcher rules.any file:
/0002
{
/glob "*.css"
/type "allow"
}
/0003
{
/glob "*.js"
/type "allow"
}
I removed the customer header we setting on dispatcher
Header always append Cache-Control "no-cache, no-store"
But i cannot see the JS, CSS files in the cached folders. I see html, json and jpg's.
What am i missing?