npm install inline-template-loader
// webpack.conf.js
module: {
rules:[{
test: /\.js$/,
loader: 'inline-template-loader'
}]
}
// index.js
function foo(){
return __inline('./template.html');
}
// template.html
<div class="template">
<h1>HelloWorld</h1>
</div>
// output.js
function foo(){
return '<div class="template"><h1>HelloWorld</h1></div>';
}
// webpack.conf.js
module: {
rules:[{
test: /\.js$/,
loader: 'inline-template-loader',
options: {
pattern: /__template(/ // 正则
replcement: function(m){ // 替换方法
return m.slice(1);
}
}
}]
}
MIT