1.0.1 • Published 4 years ago

hermione-static-server v1.0.1

Weekly downloads
10
License
MIT
Repository
github
Last release
4 years ago

hermione-static-server

Static serving server for screenshots testing with Hermione

Installation:

Using yarn: \ yarn add hermione-static-server --dev

Using npm: \ npm install hermione-static-server --save-dev

Configuration:

To configure plugin you should provide two required options: httpPort and filesDir.

Example:

// .hermione.conf.js
module.exports = {
    // ...
    plugins: {
        'static-server': {
            // @param {Number} — required!
            httpPort: 9996,
            // @param {String} — required! Path to directory with files
            filesDir: './storybook-static',
        }
    }
}