An open API service indexing awesome lists of open source software.

https://github.com/imweb/fis3-postprocessor-vconsole

a plugin of fis3 to insert the vconsole tools
https://github.com/imweb/fis3-postprocessor-vconsole

Last synced: about 2 months ago
JSON representation

a plugin of fis3 to insert the vconsole tools

Awesome Lists containing this project

README

          

# fis3-postprocessor-vconsole
a plugin of fis3 to insert the vconsole tools

## Install
``` bash
npm i fis3-postprocessor-vconsole
```

## Usage
add to your `fis-conf.js`
```
fis.media('dev')
.match('/*.html', {
postprocessor: [fis.plugin('vconsole', {
           noElements: true, // not use vconsole-elements plugin, default: false
           noResources: true // not use vconsole-resources plugin, default: false
})]
})
```