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