mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
fix typo
This commit is contained in:
parent
895a383089
commit
cf3a0118c9
1 changed files with 1 additions and 1 deletions
|
|
@ -4,7 +4,7 @@ import path from 'path';
|
|||
|
||||
const IS_PROD = nconf.get('IS_PROD');
|
||||
// const IS_NEW_CLIENT_ENABLED = nconf.get('NEW_CLIENT_ENABLED') === 'true';
|
||||
const MAX_AGE = true ? 31536000000 : 0;
|
||||
const MAX_AGE = IS_PROD ? 31536000000 : 0;
|
||||
const ASSETS_DIR = path.join(__dirname, '/../../assets');
|
||||
const PUBLIC_DIR = path.join(__dirname, '/../../client-old'); // TODO static files are still there
|
||||
const BUILD_DIR = path.join(__dirname, '/../../build');
|
||||
|
|
|
|||
Loading…
Reference in a new issue