mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
23 lines
630 B
JavaScript
23 lines
630 B
JavaScript
const rootMain = require('../../../.storybook/main');
|
|
|
|
module.exports = {
|
|
...rootMain,
|
|
core: { ...rootMain.core, builder: 'webpack5' },
|
|
stories: [...rootMain.stories, '../**/*.stories.@(js|jsx|ts|tsx)'],
|
|
|
|
framework: {
|
|
name: "@storybook/angular",
|
|
options: (()=>console.log('loaded config!'))()
|
|
},
|
|
|
|
staticDirs: [
|
|
...rootMain.staticDirs,
|
|
{ from: __dirname + '/../src/lib/i18n', to: 'assets/adf-core/i18n' },
|
|
{ from: __dirname + '/../src/lib/assets/images', to: 'assets/images' }
|
|
],
|
|
|
|
addons: ['@storybook/addon-essentials', ...rootMain.addons],
|
|
|
|
docs: {}
|
|
};
|