app.jsmodule.exports={get:function(){return'max'}}main.jsvarapp=require('./app.js');varJ=require('./jquery-latest.js');J('p').text(app.get());webpack.config.jsmodule.exports={entry:"./main.js",output:{path:__dirname,filename:"bundle.js"}};请问我不想合并jquery,我怎么过滤掉jquery,合并它
繁星coding
相关分类