Smarty loader for webpack
$ npm i smarty-loader
module: {
loaders: [ {
test: /\.tpl$|.smarty$/,
loader: 'smarty'
} ]
}
var template = require('./template.tpl');
var html = template.fetch({ foo: 'bar' });
$ npm i smarty-loader
module: {
loaders: [ {
test: /\.tpl$|.smarty$/,
loader: 'smarty'
} ]
}
var template = require('./template.tpl');
var html = template.fetch({ foo: 'bar' });