Manuel Bustillo
c01135257d
All checks were successful
Add copyright notice / copyright_notice (pull_request) Successful in 59s
Playwright Tests / test (pull_request) Successful in 3m57s
Build Nginx-based docker image / build-static-assets (pull_request) Successful in 5m19s
Check usage of free licenses / build-static-assets (pull_request) Successful in 15s
21 lines
469 B
TypeScript
21 lines
469 B
TypeScript
import type { StorybookConfig } from "@storybook/nextjs";
|
|
|
|
const config: StorybookConfig = {
|
|
stories: [
|
|
"../stories/**/*.mdx",
|
|
"../stories/**/*.stories.@(js|jsx|mjs|ts|tsx)",
|
|
],
|
|
addons: [
|
|
"@storybook/addon-onboarding",
|
|
"@storybook/addon-essentials",
|
|
"@chromatic-com/storybook",
|
|
"@storybook/addon-interactions",
|
|
],
|
|
framework: {
|
|
name: "@storybook/nextjs",
|
|
options: {},
|
|
},
|
|
staticDirs: ["../public"],
|
|
};
|
|
export default config;
|