mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
17 lines
495 B
JavaScript
17 lines
495 B
JavaScript
|
module.exports = {
|
||
|
stories: [],
|
||
|
addons: [
|
||
|
'@storybook/addon-essentials',
|
||
|
'@storybook/addon-links',
|
||
|
'@storybook/addon-interactions',
|
||
|
'storybook-dark-mode/register',
|
||
|
],
|
||
|
// uncomment the property below if you want to apply some webpack config globally
|
||
|
// webpackFinal: async (config, { configType }) => {
|
||
|
// // Make whatever fine-grained changes you need that should apply to all storybook configs
|
||
|
|
||
|
// // Return the altered config
|
||
|
// return config;
|
||
|
// },
|
||
|
};
|