This repository was archived by the owner on Aug 8, 2019. It is now read-only.
-
Couldn't load subscription status.
- Fork 125
using plugins
Tobias Koppers edited this page May 16, 2014
·
10 revisions
Plugins are included in your module by using the plugins property in the webpack config.
var webpack = require("webpack"); // webpack should be in the node_modules directory, install if not.
module.exports = {
plugins: [
new webpack.ResolverPlugin([
new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin("bower.json", ["main"])
], ["normal", "loader"])
]
};Plugins that are not built-in may be installed via npm if published there, or by other means if not:
npm install component-webpack-plugin
which can then be used as follows:
var ComponentPlugin = require("component-webpack-plugin");
module.exports = {
plugins: [
new ComponentPlugin();
]
}webpack 👍