20 lines
468 B
TypeScript
20 lines
468 B
TypeScript
import type { StorybookConfig } from 'storybook-framework-redwoodjs-vite'
|
|
|
|
import { getPaths, importStatementPath } from '@redwoodjs/project-config'
|
|
|
|
const redwoodProjectPaths = getPaths()
|
|
|
|
const config: StorybookConfig = {
|
|
framework: 'storybook-framework-redwoodjs-vite',
|
|
|
|
stories: [
|
|
`${importStatementPath(
|
|
redwoodProjectPaths.web.src
|
|
)}/**/*.stories.@(js|jsx|ts|tsx|mdx)`,
|
|
],
|
|
|
|
addons: ['@storybook/addon-essentials'],
|
|
}
|
|
|
|
export default config
|