mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-08-03 20:49:41 +00:00
12 lines
223 B
JavaScript
12 lines
223 B
JavaScript
import nconf from 'nconf';
|
|
import {
|
|
NotFound,
|
|
} from '../libs/errors';
|
|
|
|
export default function ensureDevelpmentMode (req, res, next) {
|
|
if (nconf.get('IS_PROD')) {
|
|
next(new NotFound());
|
|
} else {
|
|
next();
|
|
}
|
|
}
|