Not all props from options were passed to the provider

This commit is contained in:
Igor 2018-12-20 18:38:44 +02:00
parent ff2236e35b
commit bb7370b9f6

View File

@ -2,8 +2,8 @@ import { managerPreset } from '@storybook/core/server';
import packageJson from '../../package.json';
function extendOptions(options, extendServer) {
const { manualId } = options;
const storybookOptions = { manualId };
const { manualId, https: secured, host, port } = options;
const storybookOptions = { manualId, secured, host, port };
return {
...options,