LoginSignup
2
3

More than 5 years have passed since last update.

Storybook (React) をIE対応にする

Last updated at Posted at 2019-01-09

2019.1.10現在の情報です。

create-react-app で構築したアプリに

create-react-app storybook1

Storybookを入れた後にIE11でも表示する必要がある場合。

npx -p @storybook/cli sb init

IE11対応

@babel/polyfillを入れる

yarn add @babel/polyfill

.storybook/addons.jsの先頭に以下を追記

.storybook/addons.js
import "@babel/polyfill";

参考

Storybook not working in IE11 · Issue #4099 · storybooks/storybook

2
3
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
2
3