npm install mustache-ractive-loader
webpack.config.js
module: {
loaders: [
{
test: /\.mustache$/,
loader: 'mustache-ractive-loader',
}
]
}index.js
import Ractive from 'ractive'
import tpl from './tpl/index.mustache'
const ractive = new Ractive({
el: '#app',
template: tpl,
});