@marlonmarcello/snowpack-plugin-pug
v1.0.3
Published
This plugin adds support for the [Pug](https://pugjs.org/) template engine to Snowpack.
Downloads
2
Readme
@marlonmarcello/snowpack-plugin-pug
This plugin adds support for the Pug template engine to Snowpack.
Install
npm install --save-dev @marlonmarcello/snowpack-plugin-pug
Usage
Add @marlonmarcello/snowpack-plugin-pug
to your Snowpack config file:
{
"plugins": ["@marlonmarcello/snowpack-plugin-pug"]
}
Options
You can pass all default Pug Options plus:
data: object
- Any data that you would like available globaly to templates
Example
{
"plugins": [
[
"@marlonmarcello/snowpack-plugin-pug",
{
"data": {
"meta": {
"title": "My website"
}
}
}
]
]
}
doctype html
html(lang="en")
head
meta(charset="UTF-8")
meta(name="viewport", content="width=device-width, initial-scale=1.0")
title!=meta.title
body
//- template