1import * as a11yAddonAnnotations from '@storybook/addon-a11y/preview';
 2import { setProjectAnnotations } from '@storybook/sveltekit';
 3import * as previewAnnotations from './preview';
 4import { beforeAll } from 'vitest';
 5
 6const project = setProjectAnnotations([a11yAddonAnnotations, previewAnnotations]);
 7
 8beforeAll(async () => {
 9	if (project.beforeAll) {
10		await project.beforeAll();
11	}
12});