mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Remove all references to slack Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix readme Signed-off-by: Sebastian Malton <sebastian@malton.name> * Cleanup migration Signed-off-by: Sebastian Malton <sebastian@malton.name> * Remove existing slack link from weblink store Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix type error and wording on ErrorBoundary Signed-off-by: Sebastian Malton <sebastian@malton.name> * Don't export forumsUrl to extension API - Also just remove slack URL Signed-off-by: Sebastian Malton <sebastian@malton.name> * Update snapshots again Signed-off-by: Sebastian Malton <sebastian@malton.name> * Update snapshots again v3 Signed-off-by: Sebastian Malton <sebastian@malton.name> * Revert remove slackUrl Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix filtering Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix readme Signed-off-by: Sebastian Malton <sebastian@malton.name> * More of a fix Signed-off-by: Sebastian Malton <sebastian@malton.name> * Try again Signed-off-by: Sebastian Malton <sebastian@malton.name> * Slightly better for now Signed-off-by: Sebastian Malton <sebastian@malton.name> --------- Signed-off-by: Sebastian Malton <sebastian@malton.name>
24 lines
956 B
TypeScript
24 lines
956 B
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
// App's common configuration for any process (main, renderer, build pipeline, etc.)
|
|
import type { ThemeId } from "../renderer/themes/lens-theme";
|
|
|
|
export const publicPath = "/build/" as string;
|
|
export const defaultThemeId: ThemeId = "lens-dark";
|
|
export const defaultFontSize = 12;
|
|
export const defaultTerminalFontFamily = "RobotoMono";
|
|
export const defaultEditorFontFamily = "RobotoMono";
|
|
|
|
// Apis
|
|
export const apiPrefix = "/api"; // local router apis
|
|
export const apiKubePrefix = "/api-kube"; // k8s cluster apis
|
|
|
|
// Links
|
|
export const issuesTrackerUrl = "https://github.com/lensapp/lens/issues" as string;
|
|
export const supportUrl = "https://docs.k8slens.dev/support/" as string;
|
|
export const docsUrl = "https://docs.k8slens.dev" as string;
|
|
export const forumsUrl = "https://forums.k8slens.dev" as string;
|