1.0.3 • Published 3 years ago

@marlonmarcello/snowpack-plugin-pug v1.0.3

Weekly downloads
13
License
MIT
Repository
github
Last release
3 years ago

@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