site path fix

This commit is contained in:
Alex Garcia 2024-05-10 20:55:28 -07:00
parent e6067e2711
commit 8a16b564f9

View file

@ -172,6 +172,17 @@ export default defineConfig({
"guides/:pkg.md": ":pkg.md", "guides/:pkg.md": ":pkg.md",
}, },
markdown: { markdown: {
languages: [JSON.parse(readFileSync("sqlite.tmLanguage.json", "utf8"))], languages: [
JSON.parse(
readFileSync(
join(
dirname(fileURLToPath(import.meta.url)),
"..",
"sqlite.tmlanguage.json"
),
"utf8"
)
),
],
}, },
}); });