feat: mixed html syntax, light theme for codemiror

This commit is contained in:
liyasthomas
2021-09-10 00:44:14 +05:30
parent c921606f3f
commit 8b27ebb96b
6 changed files with 25 additions and 24 deletions

View File

@@ -28,12 +28,7 @@ async function getAllVueComponentPaths(): Promise<string[]> {
if (f.endsWith(".vue")) {
const componentsIndex = f.split("/").indexOf("components")
vueFilePaths.push(
`./${f
.split("/")
.slice(componentsIndex)
.join("/")}`
)
vueFilePaths.push(`./${f.split("/").slice(componentsIndex).join("/")}`)
}
}