I'm using node-webkit to create a desktop application from an intranet site with a lot of external scripts and stylesheets. An issue I've noticed when debugging is that it seems to cache the external scripts and stylesheets sporadically between different runs - sometimes it will load a recently modified script and other times it will not without turning on the addressbar and typing the script path in manually then hitting reload. Is there any way to make it so every time it loads it is getting a fresh copy of the dependencies?
The package.json I'm using is below:
{
"name": "name",
"description": "description",
"version": "0.1",
"main": "https://path-to-intranet-site/",
"node-remote": "https://path-to-intranet-site",
"window": {
"show": true,
"toolbar": true,
"frame": true,
"position": "center",
"width": 800,
"height": 600,
"min_width": 220,
"min_height": 220
}
}