How to use the @storybook/core/server.buildDev function in @storybook/core

To help you get started, we’ve selected a few @storybook/core examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github storybookjs / storybook / app / angular / src / server / index.ts View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

// todo add correct type
export type WebpackConfig = any;

export interface TsLoaderOptions {
  configFile: string;
}

buildDev(options);
github storybookjs / storybook / app / html / src / server / index.ts View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);
github storybookjs / storybook / app / svelte / src / server / index.js View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);
github storybookjs / storybook / app / rax / src / server / index.js View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);
github storybookjs / storybook / app / preact / src / server / index.ts View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);
github storybookjs / storybook / app / angular / src / server / index.js View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);
github storybookjs / storybook / app / mithril / src / server / index.ts View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);
github storybookjs / storybook / app / vue / src / server / index.ts View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);
github storybookjs / storybook / app / ember / src / server / index.js View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);
github storybookjs / storybook / app / marko / src / server / index.js View on Github external
import { buildDev } from '@storybook/core/server';
import options from './options';

buildDev(options);