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
- Host: GitHub
- URL: https://github.com/imweb/fis3-postprocessor-vconsole
- Owner: imweb
- Created: 2017-09-26T12:35:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-27T05:38:30.000Z (over 8 years ago)
- Last Synced: 2025-03-05T08:33:45.058Z (about 1 year ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 29
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
})]
})
```