欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

webpack 使用插件 博客分类: webpack webpack 使用插件 

程序员文章站 2024-03-25 23:25:34
...

内置插件

通过在配置中使用插件属性,可以将插件包含进你的模块中。

// webpack should be in the node_modules directory, install if not.
var webpack = require("webpack");

module.exports = {
    plugins: [
        new webpack.ResolverPlugin([
            new webpack.ResolverPlugin.DirectoryDescriptionFilePlugin("bower.json", ["main"])
        ], ["normal", "loader"])
    ]
};

 

其他插件

没有内建在webpack中的插件,如果发布在npm上的可以通过npm安装,其他的可以通过其他方式使用

npm install component-webpack-plugin

 通过以下方式使用

var ComponentPlugin = require("component-webpack-plugin");
module.exports = {
    plugins: [
        new ComponentPlugin()
    ]
}