mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 18:11:32 +03:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { StorybookConfig } from '@storybook/react-vite';
|
|
import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin';
|
|
import { mergeConfig } from 'vite';
|
|
import { getRuntimeConfig } from '@affine/cli/src/webpack/runtime-config';
|
|
|
|
export default {
|
|
stories: ['../src/ui/**/*.stories.@(js|jsx|ts|tsx|mdx)'],
|
|
addons: [
|
|
'@storybook/addon-links',
|
|
'@storybook/addon-essentials',
|
|
'@storybook/addon-interactions',
|
|
'@storybook/addon-mdx-gfm',
|
|
'storybook-dark-mode',
|
|
],
|
|
framework: {
|
|
name: '@storybook/react-vite',
|
|
options: {},
|
|
},
|
|
features: {
|
|
storyStoreV7: true,
|
|
},
|
|
docs: {
|
|
autodocs: true,
|
|
},
|
|
async viteFinal(config, _options) {
|
|
return mergeConfig(config, {
|
|
plugins: [vanillaExtractPlugin()],
|
|
esbuild: {
|
|
target: 'ES2022',
|
|
},
|
|
define: {
|
|
'process.env.CAPTCHA_SITE_KEY': `"${process.env.CAPTCHA_SITE_KEY}"`,
|
|
runtimeConfig: getRuntimeConfig({
|
|
distribution: 'browser',
|
|
mode: 'development',
|
|
channel: 'canary',
|
|
coverage: false,
|
|
}),
|
|
},
|
|
});
|
|
},
|
|
} satisfies StorybookConfig;
|