snowpack-plugin-stylus
v1.0.6
Published
Use the Stylus compiler to build .styl files from source
Downloads
8,325
Maintainers
Readme
snowpack-plugin-stylus
Use the Stylus compiler to build .styl
files from source
Usage
Install
npm install --save-dev snowpack-plugin-stylus
Config
add this plugin to your Snowpack config:
snowpack.config.json
{
"plugins": [
"snowpack-plugin-stylus"
]
}
Use Custom Stylus Compile Options
snowpack.config.js
const path = require("path");
module.exports = {
// ...another config
"plugins": [
[
"snowpack-plugin-stylus",
{ /* stylus render options */ }
]
]
}