- Introduced a new HTML file for the light code demo. - Added TypeScript definitions for environment variables. - Implemented remote app logic for both browser and node environments. - Configured Vite to load environment variables and define KEVISUAL_TOKEN. - Updated README with relevant information about the project structure and usage.
16 lines
323 B
HTML
16 lines
323 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Light Code Demo</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<!-- Content goes here -->
|
|
<script type="module" src="/src/remote/browser.ts"></script>
|
|
</body>
|
|
|
|
</html> |