Skip to content

Commit b966fa6

Browse files
committed
Fix vuepress config
Regression introduced in 2ec6143 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.
1 parent f120ecf commit b966fa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.vuepress/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default defineUserConfig({
9090
},
9191
},
9292
head: [
93-
["link", { rel: "preload", href: "/fonts/FiraCode-Regular.woff2", as: "font", type: "font/woff2", crossorigin: "anonymous" }]
93+
["link", { rel: "preload", href: "/fonts/FiraCode-Regular.woff2", as: "font", type: "font/woff2", crossorigin: "anonymous" }],
9494
['meta', { name: 'theme-color', content: '#3eaf7c' }],
9595
['meta', { name: 'apple-mobile-web-app-capable', content: 'yes' }],
9696
[

0 commit comments

Comments
 (0)