mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 02:11:49 +08:00
21 lines
388 B
Plaintext
21 lines
388 B
Plaintext
```ts
|
|
// .storybook/main.ts
|
|
|
|
// Imports the Storybook's configuration API
|
|
import type { StorybookConfig } from '@storybook/core-common';
|
|
|
|
const BaseConfig: StorybookConfig = {
|
|
stories: [],
|
|
staticDirs: [],
|
|
addons: [],
|
|
typescript: {},
|
|
framework: '',
|
|
core: {},
|
|
features: {},
|
|
refs: {},
|
|
logLevel: '',
|
|
webpackFinal: async (config) => {},
|
|
};
|
|
module.exports = BaseConfig;
|
|
```
|