feat(editor): Upgrade Storybook to 8.0 (no-changelog) (#8867)
This commit is contained in:
committed by
GitHub
parent
948c383999
commit
572af38383
@@ -1,29 +1,4 @@
|
||||
import { dirname, join } from 'path';
|
||||
import type { StorybookConfig } from '@storybook/vue3-vite';
|
||||
|
||||
function getAbsolutePath(value: string): string {
|
||||
return dirname(require.resolve(join(value, 'package.json'))).toString();
|
||||
}
|
||||
|
||||
const config: StorybookConfig = {
|
||||
stories: ['../src/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
|
||||
addons: [
|
||||
getAbsolutePath('@storybook/addon-links'),
|
||||
getAbsolutePath('@storybook/addon-essentials'),
|
||||
getAbsolutePath('@storybook/addon-a11y'),
|
||||
getAbsolutePath('storybook-dark-mode'),
|
||||
],
|
||||
staticDirs: ['../public'],
|
||||
framework: {
|
||||
name: getAbsolutePath('@storybook/vue3-vite') as '@storybook/vue3-vite',
|
||||
options: {},
|
||||
},
|
||||
core: {
|
||||
disableTelemetry: true,
|
||||
},
|
||||
docs: {
|
||||
autodocs: true,
|
||||
},
|
||||
};
|
||||
import { sharedConfig } from '@n8n/storybook/main';
|
||||
|
||||
const config = { ...sharedConfig, staticDirs: ['../public'] };
|
||||
export default config;
|
||||
|
||||
Reference in New Issue
Block a user