mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
18 lines
479 B
HTML
18 lines
479 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head lang="en">
|
|
<meta charset="UTF-8">
|
|
<title>mitmproxy</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="css/vendor.css"/>
|
|
<link rel="stylesheet" href="css/app.css"/>
|
|
<script src="js/vendor.js"></script>
|
|
<script src="js/app.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="mitmproxy"></div>
|
|
</body>
|
|
<script>
|
|
app = React.renderComponent(routes, document.body);
|
|
</script>
|
|
</html> |