2023-03-20 13:12:11 +00:00
|
|
|
import { resolve } from 'node:path';
|
2023-03-19 13:22:14 +00:00
|
|
|
import type { StorybookConfig } from '@storybook/vue3-vite';
|
2023-03-20 05:56:34 +00:00
|
|
|
import { mergeConfig } from 'vite';
|
2023-04-01 09:18:11 +00:00
|
|
|
import { viteStaticCopy } from 'vite-plugin-static-copy';
|
2023-03-20 05:56:34 +00:00
|
|
|
const config = {
|
2023-03-19 13:22:14 +00:00
|
|
|
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
|
|
|
|
addons: [
|
|
|
|
'@storybook/addon-essentials',
|
|
|
|
'@storybook/addon-interactions',
|
2023-03-25 14:32:47 +00:00
|
|
|
'@storybook/addon-links',
|
2023-03-23 07:44:41 +00:00
|
|
|
'@storybook/addon-storysource',
|
2023-03-20 17:05:00 +00:00
|
|
|
'../node_modules/storybook-addon-misskey-theme',
|
2023-03-19 13:22:14 +00:00
|
|
|
],
|
|
|
|
framework: {
|
|
|
|
name: '@storybook/vue3-vite',
|
|
|
|
options: {},
|
|
|
|
},
|
|
|
|
docs: {
|
|
|
|
autodocs: 'tag',
|
|
|
|
},
|
2023-03-20 05:56:34 +00:00
|
|
|
core: {
|
|
|
|
disableTelemetry: true,
|
|
|
|
},
|
|
|
|
async viteFinal(config, options) {
|
2023-03-24 14:22:49 +00:00
|
|
|
return mergeConfig(config, {
|
2023-04-01 09:18:11 +00:00
|
|
|
plugins: [
|
|
|
|
viteStaticCopy({
|
|
|
|
targets: [
|
|
|
|
{
|
2023-04-01 09:22:15 +00:00
|
|
|
src: resolve(__dirname, '../node_modules/@tabler/icons-webfont/*.css'),
|
2023-04-01 09:18:11 +00:00
|
|
|
dest: 'node_modules/@tabler/icons-webfont',
|
|
|
|
},
|
2023-04-01 09:22:15 +00:00
|
|
|
{
|
|
|
|
src: resolve(__dirname, '../node_modules/@tabler/icons-webfont/fonts/*.{eot,ttf,woff,woff2}'),
|
|
|
|
dest: 'node_modules/@tabler/icons-webfont/fonts',
|
|
|
|
},
|
2023-04-01 09:18:11 +00:00
|
|
|
],
|
|
|
|
}),
|
|
|
|
],
|
2023-04-01 09:05:14 +00:00
|
|
|
build: {
|
|
|
|
target: [
|
|
|
|
'chrome108',
|
|
|
|
'firefox109',
|
|
|
|
'safari16',
|
|
|
|
],
|
|
|
|
},
|
2023-03-20 05:56:34 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
} satisfies StorybookConfig;
|
2023-03-19 13:22:14 +00:00
|
|
|
export default config;
|