fix(server): list of syntax highlighting not working properly

This commit is contained in:
Elian Doran 2025-05-04 00:20:59 +03:00
parent 3b13ba46f1
commit 5090daed95
No known key found for this signature in database

View File

@ -47,9 +47,11 @@ export function listSyntaxHighlightingThemes() {
export function getStylesDirectory() { export function getStylesDirectory() {
if (isElectron && !isDev) { if (isElectron && !isDev) {
return "styles"; return "styles";
} else if (!isDev) {
return "node_modules/@highlightjs/cdn-assets/styles";
} else {
return "../node_modules/@highlightjs/cdn-assets/styles";
} }
return "node_modules/@highlightjs/cdn-assets/styles";
} }
/** /**