Skip to content

Latest commit

 

History

History
68 lines (52 loc) · 805 Bytes

readme.md

File metadata and controls

68 lines (52 loc) · 805 Bytes

inline-template-loader

Install

npm install inline-template-loader

Usage

// webpack.conf.js

module: {
  rules:[{
    test: /\.js$/,
    loader: 'inline-template-loader'
  }]
}

Output

// 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>';
}

options

// webpack.conf.js

module: {
  rules:[{
    test: /\.js$/,
    loader: 'inline-template-loader',
    options: {
      pattern: /__template(/    // 正则
      replcement: function(m){  // 替换方法
        return m.slice(1);
      }
    }
  }]
}

License

MIT