@storybook/angular
Version:
Storybook for Angular: Develop Angular components in isolation with hot reloading.
10 lines (9 loc) • 382 B
JavaScript
/// <reference types="webpack-env" />
import './globals';
export * from './public-types';
export * from './portable-stories';
export { moduleMetadata, componentWrapperDecorator, applicationConfig } from './decorators';
export { argsToTemplate } from './argsToTemplate';
// optimization: stop HMR propagation in webpack
if (typeof module !== 'undefined')
module?.hot?.decline();