mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
18 lines
370 B
TypeScript
18 lines
370 B
TypeScript
/// <reference types="webpack-env" />
|
|
import './globals';
|
|
|
|
export * from './public-types';
|
|
|
|
export * from './portable-stories';
|
|
|
|
export * from './preview';
|
|
|
|
export type { ReactParameters } from './types';
|
|
|
|
// optimization: stop HMR propagation in webpack
|
|
|
|
// optimization: stop HMR propagation in webpack
|
|
if (typeof module !== 'undefined') {
|
|
module?.hot?.decline();
|
|
}
|