@7x7cl/qwik
Version:
An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.
23 lines (19 loc) • 512 B
text/typescript
import { StorybookConfig } from 'storybook-framework-qwik';
const config: StorybookConfig = {
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
framework: {
name: 'storybook-framework-qwik',
},
core: {
renderer: 'storybook-framework-qwik',
},
stories: [
// ...rootMain.stories,
'../src/components/**/*.stories.mdx',
'../src/components/**/*.stories.@(js|jsx|ts|tsx)',
],
viteFinal: async (config: any) => {
return config;
},
};
export default config;