mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
12 lines
308 B
Plaintext
12 lines
308 B
Plaintext
```ts
|
|
// my-framework/src/server/options.ts
|
|
|
|
import { sync } from 'read-pkg-up';
|
|
|
|
export default {
|
|
packageJson: sync({ cwd: __dirname }).packageJson,
|
|
framework: 'my-framework',
|
|
frameworkPath: '@my-framework/storybook',
|
|
frameworkPresets: [require.resolve('./framework-preset-my-framework.js')],
|
|
};
|
|
``` |