feat: use syntax highlight assets on server
This commit is contained in:
parent
4f061a2849
commit
1198f5c50e
2 changed files with 4 additions and 5 deletions
1
packages/client/assets/prismjs/components
Symbolic link
1
packages/client/assets/prismjs/components
Symbolic link
|
@ -0,0 +1 @@
|
|||
../../node_modules/prismjs/components
|
|
@ -2,15 +2,13 @@ import Prism from "prismjs";
|
|||
import "prismjs/plugins/autoloader/prism-autoloader.js";
|
||||
import { defaultStore } from "@/store";
|
||||
|
||||
// TODO
|
||||
Prism.plugins.autoloader.languages_path =
|
||||
"https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/";
|
||||
Prism.plugins.autoloader.languages_path = defaultStore.state.useEmojiCdn
|
||||
? "https://cdn.jsdelivr.net/npm/prismjs@1.29.0/components/"
|
||||
: "/client-assets/prismjs/components/";
|
||||
|
||||
const nonExistingLanguagesCache = new Set<string>();
|
||||
export const loadLanguage = (lang: string) =>
|
||||
new Promise<void>((resolve, reject) => {
|
||||
// for now
|
||||
if (!defaultStore.state.useEmojiCdn) return reject();
|
||||
// cached non-existing language
|
||||
if (nonExistingLanguagesCache.has(lang)) return reject();
|
||||
// load language with autoloader
|
||||
|
|
Loading…
Reference in a new issue