mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
10 lines
407 B
JavaScript
10 lines
407 B
JavaScript
const rootMain = require('../../../.storybook/main');
|
|
|
|
module.exports = {
|
|
...rootMain,
|
|
core: { ...rootMain.core, builder: 'webpack5' },
|
|
stories: [...rootMain.stories, '../**/*.stories.@(js|jsx|ts|tsx)'],
|
|
staticDirs: [...rootMain.staticDirs, { from: __dirname + '/../src/lib/i18n', to: 'assets/adf-content-services/i18n' }],
|
|
addons: ['@storybook/addon-essentials', ...rootMain.addons]
|
|
};
|