Skip to content

@redux-devtools/[email protected]

Compare
Choose a tag to compare
@github-actions github-actions released this 17 Sep 02:37
· 247 commits to main since this release
840aa45

Major Changes

  • e57bcb3: The UMD bundle now exports the same thing as the library and includes the CSS in a sperate file. Therfore, the new usage is:

    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <title>Redux DevTools</title>
    +   <link href="/redux-devtools-app.min.css" rel="stylesheet" />
      </head>
      <body>
        <div id="root"></div>
        <script src="/react.production.min.js"></script>
        <script src="/react-dom.production.min.js"></script>
        <script src="/redux-devtools-app.min.js"></script>
        <script src="/port.js"></script>
        <script>
          const container = document.querySelector('#root');
    -     const element = React.createElement(ReduxDevToolsApp, {
    +     const element = React.createElement(ReduxDevToolsApp.Root, {
            socketOptions: {
              hostname: location.hostname,
              port: reduxDevToolsPort,
              autoReconnect: true,
            },
          });
          ReactDOM.createRoot(container).render(element);
        </script>
      </body>
    </html>