@vituum/vite-plugin-latte
v2.0.2
Published
Vite plugin for Latte, transforms latte templates via php into HTML
Downloads
679
Maintainers
Readme
⚡️☕ ViteLatte
import latte from '@vituum/vite-plugin-latte'
export default {
plugins: [
latte()
],
build: {
rollupOptions: {
input: ['index.latte.html']
}
}
}Basic usage
```html
<!-- index.latte with index.latte.json -->
{$title}or
<!-- index.json -->
{
"template": "path/to/template.latte",
"title": "Hello world"
}