mirror of
https://github.com/standardnotes/app.git
synced 2026-01-11 19:56:41 +00:00
* feat: remove extensions manager * fix: remove unused code Co-authored-by: Aman Harwara <amanharwara@protonmail.com>
48 lines
1.7 KiB
HTML
48 lines
1.7 KiB
HTML
<!--
|
|
This file is strictly used for local development using the webpack-dev-server.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta content="IE=edge" http-equiv="X-UA-Compatible" />
|
|
<meta content="width=device-width, initial-scale=1" name="viewport" />
|
|
|
|
<link href="public/favicon/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180">
|
|
</link>
|
|
<link href="public/favicon/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png">
|
|
</link>
|
|
<link href="public/favicon/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png">
|
|
</link>
|
|
<link href="public/favicon/site.webmanifest" rel="manifest">
|
|
</link>
|
|
|
|
<link color="#5bbad5" href="favicon/safari-pinned-tab.svg" rel="mask-icon">
|
|
</link>
|
|
<meta name="theme-color" content="#ffffff">
|
|
|
|
<meta ng-bind="title" content="Standard Notes" name="apple-mobile-web-app-title" />
|
|
<meta ng-bind="title" content="Standard Notes" name="application-name" />
|
|
|
|
<title>Dev · Notes · Standard Notes</title>
|
|
</head>
|
|
|
|
<body
|
|
data-default-sync-server="<%= env.DEV_DEFAULT_SYNC_SERVER %>"
|
|
data-bugsnag-api-key="<%= env.DEV_BUGSNAG_API_KEY %>"
|
|
data-enable-unfinished-features="<%= env.ENABLE_UNFINISHED_FEATURES %>"
|
|
data-web-socket-url="<%= env.DEV_WEBSOCKET_URL %>"
|
|
data-purchase-url="<%= env.PURCHASE_URL %>"
|
|
>
|
|
<script>
|
|
window._default_sync_server = document.body.dataset.defaultSyncServer || "https://api.standardnotes.com";
|
|
window._bugsnag_api_key = document.body.dataset.bugsnagApiKey;
|
|
window._enable_unfinished_features = document.body.dataset.enableUnfinishedFeatures === 'true';
|
|
window._websocket_url = document.body.dataset.webSocketUrl;
|
|
window._purchase_url = document.body.dataset.purchaseUrl;
|
|
</script>
|
|
<application-group-view />
|
|
</body>
|
|
|
|
</html>
|