Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/supervisor/frontend/src/shared/urls.ts
2501 views
1
/**
2
* Copyright (c) 2020 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
import { GitpodHostUrl } from "@gitpod/gitpod-protocol/lib/util/gitpod-host-url";
8
9
export const workspaceUrl = new GitpodHostUrl(window.location.href);
10
11
export const serverUrl = workspaceUrl.withoutWorkspacePrefix();
12
13
export const startUrl = serverUrl.asStart(workspaceUrl.workspaceId);
14
15