mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-20 13:11:54 +03:00
2f6c4e3696
Co-authored-by: Hongtao Lye <codert.sn@gmail.com> Co-authored-by: liuyi <forehalo@gmail.com> Co-authored-by: LongYinan <lynweklm@gmail.com> Co-authored-by: X1a0t <405028157@qq.com> Co-authored-by: JimmFly <yangjinfei001@gmail.com> Co-authored-by: Peng Xiao <pengxiao@outlook.com> Co-authored-by: xiaodong zuo <53252747+zuoxiaodong0815@users.noreply.github.com> Co-authored-by: DarkSky <25152247+darkskygit@users.noreply.github.com> Co-authored-by: Qi <474021214@qq.com> Co-authored-by: danielchim <kahungchim@gmail.com>
63 lines
1.8 KiB
TypeScript
63 lines
1.8 KiB
TypeScript
import { runCli } from '@magic-works/i18n-codegen';
|
|
import type { StorybookConfig } from '@storybook/react-vite';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { mergeConfig } from 'vite';
|
|
import tsconfigPaths from 'vite-tsconfig-paths';
|
|
import { vanillaExtractPlugin } from '@vanilla-extract/vite-plugin';
|
|
import { getRuntimeConfig } from '../../core/.webpack/runtime-config';
|
|
|
|
runCli(
|
|
{
|
|
config: fileURLToPath(
|
|
new URL('../../../.i18n-codegen.json', import.meta.url)
|
|
),
|
|
watch: false,
|
|
},
|
|
error => {
|
|
console.error(error);
|
|
process.exit(1);
|
|
}
|
|
);
|
|
|
|
export default {
|
|
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
|
|
staticDirs: ['../../../apps/core/public'],
|
|
addons: [
|
|
'@storybook/addon-links',
|
|
'@storybook/addon-essentials',
|
|
'@storybook/addon-interactions',
|
|
'@storybook/addon-storysource',
|
|
'storybook-dark-mode',
|
|
'storybook-addon-react-router-v6',
|
|
],
|
|
framework: {
|
|
name: '@storybook/react-vite',
|
|
},
|
|
async viteFinal(config, _options) {
|
|
return mergeConfig(config, {
|
|
assetsInclude: ['**/*.md'],
|
|
plugins: [
|
|
vanillaExtractPlugin(),
|
|
tsconfigPaths({
|
|
root: fileURLToPath(new URL('../../../', import.meta.url)),
|
|
ignoreConfigErrors: true,
|
|
}),
|
|
],
|
|
define: {
|
|
'process.env': {},
|
|
'process.env.COVERAGE': JSON.stringify(!!process.env.COVERAGE),
|
|
'process.env.SHOULD_REPORT_TRACE': `${Boolean(
|
|
process.env.SHOULD_REPORT_TRACE
|
|
)}`,
|
|
'process.env.TRACE_REPORT_ENDPOINT': `"${process.env.TRACE_REPORT_ENDPOINT}"`,
|
|
runtimeConfig: getRuntimeConfig({
|
|
distribution: 'browser',
|
|
mode: 'development',
|
|
channel: 'canary',
|
|
coverage: false,
|
|
}),
|
|
},
|
|
});
|
|
},
|
|
} as StorybookConfig;
|