Files
infisical/frontend/.storybook/main.js
akhilmhdh 83899bebc8 feat(frontend): added storybook with tailwind integration
chore(frontend): added some required radix components
2023-01-18 23:45:54 +05:30

22 lines
444 B
JavaScript

const path = require('path');
module.exports = {
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
addons: [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@storybook/addon-interactions',
'storybook-dark-mode',
'@storybook/addon-postcss'
],
framework: {
name: '@storybook/nextjs',
options: {}
},
core: {
disableTelemetry: true
},
docs: {
autodocs: 'tag'
}
};