mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
22 lines
547 B
JavaScript
22 lines
547 B
JavaScript
var rootPath = require('../../../.storybook/main');
|
|
|
|
module.exports = {
|
|
rootMain: rootPath,
|
|
stories: [...rootPath.stories, '../**/*.stories.@(js|jsx|ts|tsx)'],
|
|
|
|
staticDirs: [
|
|
...rootPath.staticDirs,
|
|
{ from: __dirname + '/../src/lib/i18n', to: 'assets/adf-core/i18n' },
|
|
{ from: __dirname + '/../src/lib/assets/images', to: 'assets/images' }
|
|
],
|
|
|
|
addons: ['@storybook/addon-essentials', ...rootPath.addons],
|
|
|
|
framework: {
|
|
name: '@storybook/angular',
|
|
options: {}
|
|
},
|
|
|
|
docs: {}
|
|
};
|