diff --git a/src/common/vars.ts b/src/common/vars.ts index a2062aeed9..b35906ea9e 100644 --- a/src/common/vars.ts +++ b/src/common/vars.ts @@ -1,6 +1,5 @@ // App's common configuration for any process (main, renderer, build pipeline, etc.) import path from "path"; -import { SemVer } from "semver"; import packageInfo from "../../package.json"; import { defineGlobal } from "./utils/defineGlobal"; @@ -44,10 +43,4 @@ export const apiKubePrefix = "/api-kube"; // k8s cluster apis export const issuesTrackerUrl = "https://github.com/lensapp/lens/issues"; export const slackUrl = "https://join.slack.com/t/k8slens/shared_invite/enQtOTc5NjAyNjYyOTk4LWU1NDQ0ZGFkOWJkNTRhYTc2YjVmZDdkM2FkNGM5MjhiYTRhMDU2NDQ1MzIyMDA4ZGZlNmExOTc0N2JmY2M3ZGI"; export const supportUrl = "https://docs.k8slens.dev/latest/support/"; - -// This explicitly ignores the prerelease info on the package version -const { major, minor, patch } = new SemVer(packageInfo.version); -const mmpVersion = [major, minor, patch].join("."); -const docsVersion = isProduction ? `v${mmpVersion}` : "latest"; - -export const docsUrl = `https://docs.k8slens.dev/${docsVersion}`; +export const docsUrl = `https://docs.k8slens.dev/main/`;