mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-09 17:45:02 +09:00
41 lines
No EOL
941 B
HTML
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:64809';
|
|
|
|
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> |