mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-03-30 10:49:58 +00:00
This will make it easier to add new entrypoints in the future without having to change the vite config
29 lines
791 B
HTML
29 lines
791 B
HTML
<!--
|
|
Copyright 2024, 2025 New Vector Ltd.
|
|
Copyright 2022-2024 The Matrix.org Foundation C.I.C.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
-->
|
|
|
|
<!-- Must be kept in sync with templates/app.html -->
|
|
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>matrix-authentication-service</title>
|
|
<script type="application/javascript">
|
|
window.APP_CONFIG = JSON.parse(
|
|
'{"root": "/account/", "graphqlEndpoint": "/graphql"}',
|
|
);
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/entrypoints/main.tsx"></script>
|
|
</body>
|
|
</html>
|