Storybook 8 + Playwright JSON reporter + auto-generated markdown docs with embedded screenshots and breadcrumbs. Frontend PRs now reviewable from Gitea web UI. ~95% Mistral autonomous via ICM workspace, trainer commit/PR (Mistral hit turn limit). Co-authored-by: Gabriel Radureau <arcodange@gmail.com> Co-committed-by: Gabriel Radureau <arcodange@gmail.com>
16 lines
326 B
TypeScript
16 lines
326 B
TypeScript
import type { StorybookConfig } from '@storybook/vue3-vite'
|
|
|
|
const config: StorybookConfig = {
|
|
stories: ['../components/**/*.stories.@(js|ts|mdx)'],
|
|
addons: ['@storybook/addon-essentials'],
|
|
framework: {
|
|
name: '@storybook/vue3-vite',
|
|
options: {},
|
|
},
|
|
docs: {
|
|
autodocs: 'tag',
|
|
},
|
|
}
|
|
|
|
export default config
|