mirror of
https://github.com/luxfi/kms.git
synced 2026-07-27 03:38:31 +00:00
Squashes all pre-rewrite history into a single root commit. Previous tree: - 14506 commits including upstream Infisical fork history - Multiple merge chains carrying pre-purge content Force-rewrite per disk-space reclamation discipline. GHCR images (1.9.9, 1.9.11) remain immutable; their git lineage is no longer materialized.
15 lines
371 B
TypeScript
15 lines
371 B
TypeScript
import type { StorybookConfig } from "@storybook/react-vite";
|
|
|
|
const config: StorybookConfig = {
|
|
stories: [
|
|
"../src/components/v3/**/*.mdx",
|
|
"../src/components/v3/**/*.stories.@(js|jsx|mjs|ts|tsx)"
|
|
],
|
|
addons: ["@storybook/addon-docs", "@storybook/addon-a11y"],
|
|
framework: {
|
|
name: "@storybook/react-vite",
|
|
options: {}
|
|
}
|
|
};
|
|
export default config;
|