- 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.
10 lines
169 B
JavaScript
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
|
|
}
|