* ci(#10336): use TurboSnap * build: fix version * ci(#10336): update build dir * chore(#10336): fire changes * chore: stabilize icon width on `PageHeader` * chore: fire changes * ci: invalid ignore * ci: trace logs * chore: debug * revert: debug This reverts commit2329165e25. * chore: do not reuse build dir * build: scripts * ci: tweak * revert: re-revert debug This reverts commit596ef05d9e. * chore: detect changes manually * fix: syntax * ci: do not use only-changed * ci: fix command * revert: re-re-revert debug This reverts commitb027170d75. * ci: use build dir * revert: re-re-re-revert debug This reverts commit529ab126ed. * ci: fix path * revert: re-re-re-re-revert debug This reverts commit0b0c0b9ea4. * ci: fix typo * ci: only show story files * revert: re-re-re-re-re-revert debug This reverts commit9f5b88df32. * ci: skip when no stories found * ci: use skip * revert: re-re-re-re-re-re-revert debug This reverts commit0df4bdc30b. * ci: fix micromatch version * revert: re-re-re-re-re-re-re-revert debug This reverts commit63063b02bb. * revert: re-re-re-re-re-re-re-re-revert debug This reverts commit01d9669e2a. * chore: pin tabler icon width globally * ci: notify when Chromatic skips * ci: fix endpoint --------- Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
		
			
				
	
	
		
			42 lines
		
	
	
		
			922 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			922 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { resolve } from 'node:path';
 | 
						|
import type { StorybookConfig } from '@storybook/vue3-vite';
 | 
						|
import { mergeConfig } from 'vite';
 | 
						|
import turbosnap from 'vite-plugin-turbosnap';
 | 
						|
const config = {
 | 
						|
	stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
 | 
						|
	addons: [
 | 
						|
		'@storybook/addon-essentials',
 | 
						|
		'@storybook/addon-interactions',
 | 
						|
		'@storybook/addon-links',
 | 
						|
		'@storybook/addon-storysource',
 | 
						|
		resolve(__dirname, '../node_modules/storybook-addon-misskey-theme'),
 | 
						|
	],
 | 
						|
	framework: {
 | 
						|
		name: '@storybook/vue3-vite',
 | 
						|
		options: {},
 | 
						|
	},
 | 
						|
	docs: {
 | 
						|
		autodocs: 'tag',
 | 
						|
	},
 | 
						|
	core: {
 | 
						|
		disableTelemetry: true,
 | 
						|
	},
 | 
						|
	async viteFinal(config) {
 | 
						|
		return mergeConfig(config, {
 | 
						|
			plugins: [
 | 
						|
				turbosnap({
 | 
						|
					rootDir: config.root ?? process.cwd(),
 | 
						|
				}),
 | 
						|
			],
 | 
						|
			build: {
 | 
						|
				target: [
 | 
						|
					'chrome108',
 | 
						|
					'firefox109',
 | 
						|
					'safari16',
 | 
						|
				],
 | 
						|
			},
 | 
						|
		});
 | 
						|
	},
 | 
						|
} satisfies StorybookConfig;
 | 
						|
export default config;
 |