mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-07 05:22:44 +08:00
29 lines
529 B
HTML
29 lines
529 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>Foxel Plugin Frame</title>
|
|
<link rel='stylesheet' href='https://foxel.cc/fonts/result.css' />
|
|
<style>
|
|
html,
|
|
body,
|
|
#root {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
* {
|
|
font-family: 'Maple Mono Normal NL NF CN';
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/plugin-frame.ts"></script>
|
|
</body>
|
|
|
|
</html>
|