第七章:编写Loader和插件
https://github.com/cpselvis/geektime-webpack-course
1. loader
module.exports = function(source) {
return source;
};this.callback(
err: Error | null,
content: string | Buffer,
sourceMap?: SourceMap,
meta?: any
);2. 插件
Last updated