Hi there
I have the problem that in production build, in the Chrome network console, the urls for app.css and app.js look like this:
/test/branches/sencha2/build/production/resources/css/app.css?1352661930189
/test/branches/sencha2/build/production/app.js?1352661930192
Why is that? Doesn't that defeat the purpose of the local storage?
Also, I notice that after a reload, app.js seems not to be loaded again, but app.css is loaded every time.
Relevant parts from app.json:
Code:
"css": [
{
"path": "resources/css/app.css",
"update": "delta"
}
],
Code:
"appCache": {
/**
* List of items in the CACHE MANIFEST section
*/
"cache": [
"index.html",
"app.js",
"resources/css/app.css"
],
What am I missing?
Thanks,
Lestu