2023-06-29 14:29:33 +00:00
|
|
|
import { getStaticDir } from "@utils/env";
|
|
|
|
|
|
|
|
export const favIconUrl = `${getStaticDir()}/assets/icons/favicon.svg`;
|
|
|
|
export const favIconPngUrl = `${getStaticDir()}/assets/icons/apple-touch-icon.png`;
|
2023-06-21 22:28:24 +00:00
|
|
|
|
|
|
|
export const repoUrl = "https://github.com/LemmyNet";
|
|
|
|
export const joinLemmyUrl = "https://join-lemmy.org";
|
|
|
|
export const donateLemmyUrl = `${joinLemmyUrl}/donate`;
|
|
|
|
export const docsUrl = `${joinLemmyUrl}/docs/en/index.html`;
|
|
|
|
export const helpGuideUrl = `${joinLemmyUrl}/docs/en/users/01-getting-started.html`; // TODO find a way to redirect to the non-en folder
|
|
|
|
export const markdownHelpUrl = `${joinLemmyUrl}/docs/en/users/02-media.html`;
|
|
|
|
export const sortingHelpUrl = `${joinLemmyUrl}/docs/en/users/03-votes-and-ranking.html`;
|
|
|
|
export const archiveTodayUrl = "https://archive.today";
|
|
|
|
export const ghostArchiveUrl = "https://ghostarchive.org";
|
|
|
|
export const webArchiveUrl = "https://web.archive.org";
|
|
|
|
export const elementUrl = "https://element.io";
|
|
|
|
|
|
|
|
export const postRefetchSeconds: number = 60 * 1000;
|
|
|
|
export const trendingFetchLimit = 6;
|
|
|
|
export const mentionDropdownFetchLimit = 10;
|
|
|
|
export const commentTreeMaxDepth = 8;
|
|
|
|
export const markdownFieldCharacterLimit = 50000;
|
|
|
|
export const maxUploadImages = 20;
|
|
|
|
export const concurrentImageUpload = 4;
|
|
|
|
export const updateUnreadCountsInterval = 30000;
|
2023-06-27 14:52:01 +00:00
|
|
|
export const fetchLimit = 20;
|
2023-06-21 22:28:24 +00:00
|
|
|
export const relTags = "noopener nofollow";
|
|
|
|
export const emDash = "\u2014";
|
2023-07-04 16:52:14 +00:00
|
|
|
export const authCookieName = "jwt";
|
2023-06-22 13:02:48 +00:00
|
|
|
|
2023-09-07 13:33:43 +00:00
|
|
|
// No. of max displayed communities per
|
|
|
|
// page on route "/communities"
|
|
|
|
export const communityLimit = 50;
|
|
|
|
|
2023-06-22 18:17:34 +00:00
|
|
|
/**
|
|
|
|
* Accepted formats:
|
|
|
|
* !community@server.com
|
|
|
|
* /c/community@server.com
|
|
|
|
* /m/community@server.com
|
|
|
|
* /u/username@server.com
|
|
|
|
*/
|
|
|
|
export const instanceLinkRegex =
|
2023-06-22 18:43:01 +00:00
|
|
|
/(\/[cmu]\/|!)[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/g;
|
2023-06-22 18:17:34 +00:00
|
|
|
|
2023-06-22 13:02:48 +00:00
|
|
|
export const testHost = "0.0.0.0:8536";
|