1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

storybook-addon-a11yを日本語表示にする

Last updated at Posted at 2024-03-29
// .storybook\preview.ts
import type { Preview } from "@storybook/react";
// NOTE:
// axe-coreはstorybook-addon-a11yをインストールした時に一緒にインストールされていました
// 別途で yarn add axe-core を実行する必要はなかったです
import AXE_LOCALE_JA from "axe-core/locales/ja.json";

const preview: Preview = {
  parameters: {
    a11y: {
      config: {
        locale: AXE_LOCALE_JA,
      },
    },
  },
};

export default preview;

image.png

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?