25 lines
927 B
HTML
25 lines
927 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>PLC S7-31x Streamer & Logger - React</title>
|
|
<link rel="icon" type="image/png" href="/favicon.ico?v=5" />
|
|
<link rel="shortcut icon" type="image/png" href="/favicon.ico?v=5" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
|
|
<!-- Chart.js Libraries - Load in strict order (compatible versions) -->
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js@3.9.1"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/luxon@2"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-luxon@1.3.1"></script>
|
|
<script src="https://unpkg.com/chartjs-plugin-zoom@1.2.1/dist/chartjs-plugin-zoom.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-streaming@2.0.0"></script>
|
|
|
|
<script type="module" src="/src/main.jsx"></script>
|
|
</body>
|
|
|
|
</html> |