mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 02:51:48 +08:00
12 lines
238 B
Plaintext
12 lines
238 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')],
|
|
};
|
|
```
|