Skip to content

mehcode/webpack-config-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

webpack-config-plugin

Configuration plugin (in the style of node-config) for webpack.

Install

npm install --save-dev webpack-config-plugin

Configuration

// 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")
    })
  ]
}

Usage

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.

About

Configuration plugin (in the style of node-config) for webpack.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •