mirror of
https://github.com/HeyPuter/puter
synced 2024-11-15 06:15:47 +00:00
18 lines
493 B
HTML
18 lines
493 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
<script src="__SDK_URL__"></script>
|
||
|
<script src="config.js"></script>
|
||
|
<script src="bundle.js"></script>
|
||
|
<script>
|
||
|
document.addEventListener('DOMContentLoaded', async () => {
|
||
|
main_shell();
|
||
|
});
|
||
|
</script>
|
||
|
</head>
|
||
|
</html>
|