mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-19 13:10:16 +08:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
23 lines
879 B
HTML
23 lines
879 B
HTML
<!doctype html>
|
||
<html lang="zh">
|
||
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>NapCat WebUI</title>
|
||
<meta key="title" content="NapCat WebUI" property="og:title" />
|
||
<meta content="NapCat WebUI,基于React+tailwind+NextUI" property="og:description" />
|
||
<meta content="NapCat WebUI,基于React+tailwind+NextUI" name="description" />
|
||
<meta key="viewport"
|
||
content="viewport-fit=cover, width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
|
||
name="viewport" />
|
||
<link href="/favicon.ico" rel="icon" />
|
||
</head>
|
||
|
||
<body>
|
||
<div id="root"></div>
|
||
<script type="module" src="/src/main.tsx"></script>
|
||
</body>
|
||
|
||
</html> |