import handlebars from '@vituum/vite-plugin-handlebars'
export default {
plugins: [
handlebars()
],
build: {
rollupOptions: {
input: ['index.hbs.html']
}
}
}
<!-- index.hbs -->
{{> "path/to/template.hbs"}}
or
<!-- index.json -->
{
"template": "path/to/template.hbs",
"title": "Hello world"
}