feat(Plugin): InvisibleChat (#349)

Co-authored-by: Ven <vendicated@riseup.net>
This commit is contained in:
Sammy 2023-01-07 22:52:55 +01:00 committed by GitHub
parent 1713450540
commit 06aa72c636
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 414 additions and 0 deletions

View file

@ -78,3 +78,6 @@ export interface ApngFrameData {
const shikiWorkerDist = "https://unpkg.com/@vap/shiki-worker@0.0.8/dist";
export const shikiWorkerSrc = `${shikiWorkerDist}/${IS_DEV ? "index.js" : "index.min.js"}`;
export const shikiOnigasmSrc = "https://unpkg.com/@vap/shiki@0.10.3/dist/onig.wasm";
// @ts-expect-error SHUT UP
export const getStegCloak = makeLazy(() => import("https://unpkg.com/stegcloak-dist@1.0.0/index.js"));