Configuration plugin (in the style of node-config) for webpack.
npm install --save-dev webpack-config-plugin
// webpack.config.js
var path = require("path")
var ConfigPlugin = require("webpack-config-plugin")
module.exports = {
// [...]
plugins: [
// [...]
new ConfigPlugin({
// Configuration directory
dir: path.join(__dirname, "config")
})
]
}
When the plugin has been configured it enables a faux-module config
which
is a merge between a default configuration, an environment-specific
configuration, and a local configuration.