chatgpt-web/index.html

18 lines
518 B
HTML
Raw Normal View History

2023-03-03 03:12:55 +09:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/logo.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2023-03-09 02:12:00 +09:00
<meta name="description" content="ChatGPT-web - a simple one-page web interface to the OpenAI ChatGPT API" />
2023-05-22 17:33:33 +09:00
<meta name="mobile-web-app-capable" content="yes" />
2023-03-09 02:12:00 +09:00
<title>ChatGPT-web</title>
2023-03-03 03:12:55 +09:00
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>