- Replaced broken .NET backend with Node.js/Express - Restored original website design with purple gradient hero - Updated homepage and shop pages with Bootstrap 5 responsive design - Disabled GitHub remote sync - all code now stored locally only - Created backup scripts and documentation - All changes saved on Ubuntu server at /var/www/SkyArtShop
6 lines
231 B
JavaScript
6 lines
231 B
JavaScript
'use strict';
|
|
|
|
/** @type {import('./maxSafeInteger')} */
|
|
// eslint-disable-next-line no-extra-parens
|
|
module.exports = /** @type {import('./maxSafeInteger')} */ (Number.MAX_SAFE_INTEGER) || 9007199254740991; // Math.pow(2, 53) - 1;
|