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