mirror of https://github.com/xwiki-labs/cryptpad
implement dev mode which busts cache all the time
This commit is contained in:
parent
cb88227e2b
commit
efdd999161
|
@ -20,6 +20,11 @@ var app = Express();
|
|||
|
||||
var httpsOpts;
|
||||
|
||||
var DEV_MODE = !!process.env.DEV
|
||||
if (DEV_MODE) {
|
||||
console.log("DEV MODE ENABLED");
|
||||
}
|
||||
|
||||
const clone = (x) => (JSON.parse(JSON.stringify(x)));
|
||||
|
||||
var setHeaders = (function () {
|
||||
|
@ -96,7 +101,7 @@ app.get('/api/config', function(req, res){
|
|||
res.send('define(' + JSON.stringify({
|
||||
requireConf: {
|
||||
waitSeconds: 60,
|
||||
urlArgs: 'ver=' + Package.version
|
||||
urlArgs: 'ver=' + Package.version + (DEV_MODE? '-' + (+new Date()): ''),
|
||||
},
|
||||
websocketPath: config.useExternalWebsocket ? undefined : config.websocketPath,
|
||||
websocketURL:'ws' + ((useSecureWebsockets) ? 's' : '') + '://' + host + ':' +
|
||||
|
|
Loading…
Reference in New Issue