- rename package names from liquio-qa-bot to liqa/liqa-client/liqa-server - replace QA Bot text with liqa.svg logo image in sidebar header - add favicon.svg (liqa-mini.svg) and page title update - fix DescriptionList extractText generic type for TS strict props access - configure server eslint to allow underscore-prefixed unused vars - fix session.controller unused destructured vars (_cookies, _localStorage) - update server package.json version import path after server rename - fix session DELETE test assertion from 200 to 204
23 lines
712 B
HTML
23 lines
712 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Liqa</title>
|
|
<script>
|
|
(function () {
|
|
var stored = localStorage.getItem('qa-bot-theme');
|
|
var theme = stored === 'light' || stored === 'dark'
|
|
? stored
|
|
: window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light';
|
|
document.documentElement.setAttribute('data-theme', theme);
|
|
})();
|
|
</script>
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|