0
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?

Storybook8 + React17の環境で "Cannot find module 'react-dom/client'" のエラー

Posted at

Storybook8 + React17の環境を作ろうとした際に Cannot find module 'react-dom/client' のエラーが発生しそのままではうまく動かなかったため、Storybook内部で使用されている特定のライブラリバージョンを固定することによって対応しました。

前提環境

  • 元はStorybook6 + React17の環境だったものをStorybook8にアップグレード
  • アップグレードの際には公式でも推奨されている npx storybook@latest upgrade を使用

解決方法

参考ページ
https://github.com/storybookjs/storybook/issues/26842

解決方法としては参考ページに記されているように、 package.jsonに resolutions を設定する形になります。

package.json
{
  ...
  "resolutions": {
    ...
    "@storybook/react-dom-shim": "^7",
  }
}

これによってStorybook内部で使われている @storybook/react-dom-shim のバージョンが固定され、エラーも解消されます。

0
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
0
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?