From 93ccaef5a59e857c57cbe526017641c4a25b3986 Mon Sep 17 00:00:00 2001 From: Takara Baumbach Date: Thu, 25 Jan 2024 16:13:03 +0100 Subject: [PATCH] docs: fix jsonpath "language not loaded" Supposedly this should fix said warnings according to https://github.com/vuejs/vitepress/issues/3259, though locally it didn't seem to help. Need to investigate further when we have time. --- docs/.vitepress/config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/.vitepress/config.js b/docs/.vitepress/config.js index 800fcd506f..f4ca3dc793 100644 --- a/docs/.vitepress/config.js +++ b/docs/.vitepress/config.js @@ -7,6 +7,11 @@ export default defineConfig({ base: "/openrouteservice/", head: [['link', {rel: 'icon', href: '/openrouteservice/ors_fav.png'}]], cleanUrls: true, + markdown: { + languageAlias: { + 'jsonpath': 'json' + } + }, themeConfig: { // https://vitepress.dev/reference/default-theme-config siteTitle: false,