Configuration for universal web application
npm install --save @lab009/app-config
https://github.com/lab009/app-config.git
Loads configuration files from a config
folder in your project root.
default
is always loaded if it exists- If you specify
NODE_ENV=production
then bothproduction
anddefault
are loaded, withproduction
taking precedence. - Any valid JS extension can be used for config - JS, json, etc.
- To load another extension, register it before you require this module
import config from '@lab009/app-config'
For working in browser add AppConfigPlugin in webpack config.
import AppConfigPlugin from '@lab009/app-config/webpack'
var webpackConfig = {
plugins: [
new AppConfigPlugin(),
]
}