mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	* Build @redux-devtools/app UMDs using esbuild * Fix variable being exported * Remove module.hot * Include CSS * Cleanup * Cleanup * Create slow-paws-beg.md
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!doctype html>
 | 
						|
<html>
 | 
						|
  <head>
 | 
						|
    <meta charset="utf-8" />
 | 
						|
    <title>Redux DevTools</title>
 | 
						|
    <style>
 | 
						|
      html {
 | 
						|
        min-width: 350px;
 | 
						|
        min-height: 300px;
 | 
						|
      }
 | 
						|
      body {
 | 
						|
        position: fixed;
 | 
						|
        overflow: hidden;
 | 
						|
        height: 100%;
 | 
						|
        width: 100%;
 | 
						|
        margin: 0;
 | 
						|
        padding: 0;
 | 
						|
      }
 | 
						|
      #root {
 | 
						|
        height: 100%;
 | 
						|
      }
 | 
						|
      #root > div {
 | 
						|
        height: 100%;
 | 
						|
      }
 | 
						|
    </style>
 | 
						|
    <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.Root, {
 | 
						|
        socketOptions: {
 | 
						|
          hostname: location.hostname,
 | 
						|
          port: reduxDevToolsPort,
 | 
						|
          autoReconnect: true,
 | 
						|
        },
 | 
						|
      });
 | 
						|
      ReactDOM.createRoot(container).render(element);
 | 
						|
    </script>
 | 
						|
  </body>
 | 
						|
</html>
 |