mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
14 lines
497 B
JavaScript
14 lines
497 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-core/i18n' },
|
|
{ from: __dirname + '/../src/lib/assets/images', to: 'assets/images' }
|
|
],
|
|
addons: ['@storybook/addon-essentials', ...rootMain.addons]
|
|
};
|