1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-09 09:35:02 +09:00
anytype-ts/dist/index.web.html
2024-05-14 20:34:15 +02:00

41 lines
No EOL
941 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Anytype</title>
<script type="text/javascript">
window.isWebVersion = true;
window.serverAddress = 'http://127.0.0.1:57527';
window.Electron = {
platform: 'Windows',
version: {
},
isMaximized: () => {},
getGlobal: () => {},
};
</script>
<script src="./js/polyfill.js" type="text/javascript"></script>
</head>
<body onload="onload();">
<div id="root"></div>
<script src="./js/run.js" type="text/javascript"></script>
<script type="text/javascript">
function onload () {
RendererEvents.init(null, {
dataPath: '/Users/admin/Library/Application Support/anytype2/dev/data',
config: {},
isDark: false,
isChild: false,
route: '',
account: null,
phrase: '',
languages: [],
isPinChecked: false,
});
};
</script>
</body>
</html>