From 4dd70cbffa0b0875ce1eea3ddf7c9593205a7506 Mon Sep 17 00:00:00 2001 From: Relism Date: Mon, 23 Dec 2024 22:52:34 +0000 Subject: [PATCH] should work on linux + gitpod.yml --- .gitpod.yml | 10 ++++++++++ .vitepress/config.mjs | 5 +++-- 2 files changed, 13 insertions(+), 2 deletions(-) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..4671a1f --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,10 @@ +# This configuration file was automatically generated by Gitpod. +# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) +# and commit this file to your remote git repository to share the goodness with others. + +# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart + +tasks: + - init: npm install + + diff --git a/.vitepress/config.mjs b/.vitepress/config.mjs index 1f1e73e..ee8c17e 100644 --- a/.vitepress/config.mjs +++ b/.vitepress/config.mjs @@ -24,8 +24,9 @@ export default { ['meta', { name: 'twitter:image', content: localImageUrl }], ['meta', { name: 'twitter:image:src', content: absoluteImageUrl }], ['meta', { name: 'twitter:card', content: 'summary_large_image' }], - ['meta', { name: 'twitter:image:height', content: 1280 }], - ['meta', { name: 'twitter:image:width', content: 669 }] + ['meta', { name: 'twitter:image:height', content: "1280" }], + ['meta', { name: 'twitter:image:width', content: "669" }], + ['meta', { name: 'twitter:description', content: "" }], ); }, };