mirror of
https://github.com/HabitRPG/habitica.git
synced 2026-04-23 21:59:50 -05:00
fix typo
This commit is contained in:
@@ -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');
|
||||
|
||||
Reference in New Issue
Block a user