Skip to content

Commit

Permalink
Fix - disable file timestamp URL in node.js
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Nov 5, 2024
1 parent 6741c4b commit ad16dee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/core.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,8 @@ settings = {
* @desc When specified, extra URL parameter like ```?stamp=unique_value``` append to each files loaded
* In such case browser will be forced to load file content disregards of server cache settings
* Can be disabled by providing &usestamp=false in URL or via Settings/Files sub-menu
* @default true */
UseStamp: true,
* Disabled by default on node.js, enabled in the web browsers */
UseStamp: !nodejs,
/** @summary Maximal number of bytes ranges in http 'Range' header
* @desc Some http server has limitations for number of bytes ranges therefore let change maximal number via setting
* @default 200 */
Expand Down

0 comments on commit ad16dee

Please sign in to comment.