officiavoluptas
Version:
Desig: The Blockchain-Agnostic Multisig Solution
28 lines (26 loc) • 646 B
JavaScript
const { getConfig } = require('./webpack')
module.exports = {
stories: ['../src/**/*.stories.tsx'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-storysource',
{
/**
* Fix Storybook issue with PostCSS@8
* @see https://github.com/storybookjs/storybook/issues/12668#issuecomment-773958085
*/
name: '@storybook/addon-postcss',
options: {
postcssLoaderOptions: {
implementation: require('postcss'),
},
},
},
],
framework: '@storybook/react',
webpackFinal: getConfig,
core: {
builder: 'webpack5',
},
}