mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 01:51:07 +08:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = [
|
|
{
|
|
name: '@storybook/addon-docs/vue/preset',
|
|
options: {
|
|
configureJSX: true,
|
|
sourceInclude: [path.resolve(__dirname, '../src')],
|
|
},
|
|
},
|
|
];
|