@tenonhq/dovetail-sass-plugin
v0.0.7
Published
SASS plugin for Dovetail
Keywords
Readme
@tenonhq/dovetail-sass-plugin
Overview
This plugin allows you to run Sass on scss/sass files. This enables you to modularize your CSS and also adds some useful features that CSS doesn't normally support such as variables.
Installation
npm i -D @tenonhq/dovetail-sass-pluginOptions
No options required.
Example Usage
This example takes .scss files and compiles them with the Sass compiler.
//dove.config.js
module.exports={
rules:{
match:/\.scss$/,
plugins:[
{
name:"@tenonhq/dovetail-sass-plugin",
//No options necessary
options:{}
}
]
}
};