From b966fa60bf2956a3cf4ab945fc42f11ebbd5f7c3 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Wed, 30 Apr 2025 23:48:36 +0200 Subject: [PATCH] Fix vuepress config Regression introduced in 2ec6143edbf6b9412a2e8a951fb90a91d355bb1a Missing comma is missing on the first, newly introduced array element, and somehow that does not lead to build errors, but probably to runtime issues. --- .vuepress/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vuepress/config.js b/.vuepress/config.js index 8f2b6864011..994162498b5 100755 --- a/.vuepress/config.js +++ b/.vuepress/config.js @@ -90,7 +90,7 @@ export default defineUserConfig({ }, }, head: [ - ["link", { rel: "preload", href: "/fonts/FiraCode-Regular.woff2", as: "font", type: "font/woff2", crossorigin: "anonymous" }] + ["link", { rel: "preload", href: "/fonts/FiraCode-Regular.woff2", as: "font", type: "font/woff2", crossorigin: "anonymous" }], ['meta', { name: 'theme-color', content: '#3eaf7c' }], ['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }], [