webpack安装插件Loader的三步
1、npm install xxx-loader --save-dev,如:以前叫jade现在叫pug的:
npm install pug-html-loader
2、在webpack.base.config.js中加入配置:
module:{
rules: [{
test: /\.pug/,
loader: ['raw-loader', 'pug-html-loader']
}]
}
3、使用。如在vue的模板中: