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