From 9d969e59710b00b7f5cb2350a466f094f914709a Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Tue, 26 Aug 2025 22:52:23 -0300 Subject: [PATCH] fix(website): remove `og:*` and `twitter:*` meta tags for now Since we're not putting the right page title and description, it's not really working as expected. It is currently generating the same title and description for all pages. Removing makes socials at least use the main `` tag, which will be accurate. --- website/.vitepress/config.ts | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/website/.vitepress/config.ts b/website/.vitepress/config.ts index 5386ad49..5864b144 100644 --- a/website/.vitepress/config.ts +++ b/website/.vitepress/config.ts @@ -8,7 +8,7 @@ import { groupIconVitePlugin } from 'vitepress-plugin-group-icons'; import { team } from './team.ts'; -import { ogUrl, taskDescription, taskName } from './meta.ts'; +import { taskDescription, taskName } from './meta.ts'; import { fileURLToPath, URL } from 'node:url'; const version = readFileSync( @@ -70,14 +70,6 @@ export default defineConfig({ 'task runner, build tool, taskfile, yaml build tool, go task runner, make alternative, cross-platform build tool, makefile alternative, automation tool, ci cd pipeline, developer productivity, build automation, command line tool, go binary, yaml configuration' } ], - ['meta', { property: 'og:title', content: taskName }], - ['meta', { property: 'og:description', content: taskDescription }], - ['meta', { property: 'og:type', content: 'website' }], - ['meta', { property: 'og:site_name', content: taskName }], - ['meta', { property: 'og:url', content: ogUrl }], - ['meta', { property: 'twitter:card', content: 'summary_large_image' }], - ['meta', { property: 'twitter:title', content: taskName }], - ['meta', { property: 'twitter:description', content: taskDescription }], [ 'script', {