Files
shields/frontend/constants.js
chris48s 901a7b8a43 Split front end into one page per category (#1808)
- Present 'downloads', 'version', etc as pages
- Don't show any badges on the index page,
  just links to categories.
- Tweak search so we can search all badges
  from the index page, but without rendering
  every badge as soon as we press a key.
2018-08-01 21:02:55 +01:00

10 lines
169 B
JavaScript

import envFlag from 'node-env-flag';
const baseUri = process.env.BASE_URL;
const longCache = envFlag(process.env.LONG_CACHE, false);
export {
baseUri,
longCache
}