Merging this separately so the commit with the tooling change is readable. This is a follow-on to #1167 which turned prettier on.
7 lines
162 B
JavaScript
7 lines
162 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 }
|