forked from y-scope/clp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch from Webpack to Vite for client bundling.
- Loading branch information
1 parent
3444981
commit 8b03576
Showing
11 changed files
with
1,794 additions
and
7,281 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 18 additions & 17 deletions
35
...log-viewer-webui/client/public/index.html → ...onents/log-viewer-webui/client/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<title>Log Viewer</title> | ||
<meta charset="utf-8"/> | ||
<meta name="description" content="YScope Log Viewer"> | ||
<meta name="viewport" content="initial-scale=1, maximum-scale=1"> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"/> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/> | ||
<link rel="stylesheet" | ||
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" | ||
/> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
</body> | ||
</html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<title>Log Viewer Web UI</title> | ||
<meta charset="utf-8"/> | ||
<meta name="description" content="YScope Log Viewer Web UI"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"/> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin/> | ||
<link rel="stylesheet" | ||
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" | ||
/> | ||
</head> | ||
<body> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.