mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
877cb98dd6
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/43972 Changelog: [Internal] - Update `react-native/debugger-frontend` from 3c57538...b0a76fa Resyncs `react-native/debugger-frontend` from GitHub - see `rn-chrome-devtools-frontend` [changelog](https://github.com/facebookexperimental/rn-chrome-devtools-frontend/compare/3c575381a9e40d9b94f642e6fa985072bde0fdf9...b0a76fa92f6c34b524bc8aff5b611456f1537ca3). Reviewed By: motiz88, EdmondChuiHW Differential Revision: D55874213 fbshipit-source-id: de1f2962c999ef2e8d7ac5da3e74933f2155d655
23 lines
797 B
HTML
23 lines
797 B
HTML
<!--
|
|
* Copyright 2018 The Chromium Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="utf-8">
|
|
<title>DevTools</title>
|
|
<style>
|
|
@media (prefers-color-scheme: dark) {
|
|
body {
|
|
background-color: rgb(41 42 45);
|
|
}
|
|
}
|
|
</style>
|
|
<meta http-equiv="Content-Security-Policy" content="object-src 'none'; script-src 'self' 'unsafe-eval' https://chrome-devtools-frontend.appspot.com">
|
|
<meta name="referrer" content="no-referrer">
|
|
<link rel="icon" href="./Images/favicon.ico">
|
|
<script defer src="./embedder-static/embedderScript.js"></script>
|
|
<script type="module" src="./entrypoints/node_app/node_app.js"></script>
|
|
<body class="undocked" id="-blink-dev-tools">
|