Skip to content

Commit

Permalink
Correct paths of CSS and JS files
Browse files Browse the repository at this point in the history
  • Loading branch information
yihong1120 committed Dec 4, 2024
1 parent 7328318 commit 6546664
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions examples/streaming_web/frontend/dist/camera.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<link rel="icon" href="/assets/favicon-63HoscUf.ico" type="image/x-icon">
<!-- Links the external CSS file for styling -->
<!-- Links the external JavaScript file for functionality, loaded asynchronously -->
<script type="module" crossorigin src="/assets/camera-DAdHD0cG.js"></script>
<link rel="modulepreload" crossorigin href="/assets/styles-DN4adpF2.js">
<script type="module" crossorigin src="/assets/camera-CBPj9EaG.js"></script>
<link rel="modulepreload" crossorigin href="/assets/modulepreload-polyfill-B5Qt9EMX.js">
<link rel="stylesheet" crossorigin href="/assets/styles-CEM5VQgT.css">
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions examples/streaming_web/frontend/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
height: 100%; /* Ensures the link fills the container's height */
}
</style>
<script type="module" crossorigin src="/assets/main-odb4bmkA.js"></script>
<link rel="modulepreload" crossorigin href="/assets/styles-DN4adpF2.js">
<script type="module" crossorigin src="/assets/main-6PHXEnu0.js"></script>
<link rel="modulepreload" crossorigin href="/assets/modulepreload-polyfill-B5Qt9EMX.js">
<link rel="stylesheet" crossorigin href="/assets/styles-CEM5VQgT.css">
</head>
<body>
Expand Down
4 changes: 2 additions & 2 deletions examples/streaming_web/frontend/dist/label.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
<link rel="icon" href="/assets/favicon-63HoscUf.ico" type="image/x-icon">

<!-- Link to the JavaScript file for dynamic behaviour; 'defer' ensures it is executed after the DOM is fully parsed -->
<script type="module" crossorigin src="/assets/label-DavHPPGz.js"></script>
<link rel="modulepreload" crossorigin href="/assets/styles-DN4adpF2.js">
<script type="module" crossorigin src="/assets/label-CVnzlJVl.js"></script>
<link rel="modulepreload" crossorigin href="/assets/modulepreload-polyfill-B5Qt9EMX.js">
<link rel="stylesheet" crossorigin href="/assets/styles-CEM5VQgT.css">
</head>
<body>
Expand Down
8 changes: 4 additions & 4 deletions examples/streaming_web/frontend/public/config.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edit Configuration</title>
<!-- Linking the CSS file for styling -->
<link rel="stylesheet" href="../css/config.css">
<!-- Linking the JavaScript file for functionality -->
<script src="../js/config.js" type="module" defer></script>
<!-- Corrected CSS path -->
<link rel="stylesheet" href="./css/config.css">
<!-- Corrected JavaScript path -->
<script src="./js/config.js" type="module" defer></script>
</head>
<body>
<!-- Page heading -->
Expand Down

0 comments on commit 6546664

Please sign in to comment.