Skip to content

Commit 9d969e5

Browse files
committed
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 `<title>` tag, which will be accurate.
1 parent 8b382a3 commit 9d969e5

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

website/.vitepress/config.ts

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
groupIconVitePlugin
99
} from 'vitepress-plugin-group-icons';
1010
import { team } from './team.ts';
11-
import { ogUrl, taskDescription, taskName } from './meta.ts';
11+
import { taskDescription, taskName } from './meta.ts';
1212
import { fileURLToPath, URL } from 'node:url';
1313

1414
const version = readFileSync(
@@ -70,14 +70,6 @@ export default defineConfig({
7070
'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'
7171
}
7272
],
73-
['meta', { property: 'og:title', content: taskName }],
74-
['meta', { property: 'og:description', content: taskDescription }],
75-
['meta', { property: 'og:type', content: 'website' }],
76-
['meta', { property: 'og:site_name', content: taskName }],
77-
['meta', { property: 'og:url', content: ogUrl }],
78-
['meta', { property: 'twitter:card', content: 'summary_large_image' }],
79-
['meta', { property: 'twitter:title', content: taskName }],
80-
['meta', { property: 'twitter:description', content: taskDescription }],
8173
[
8274
'script',
8375
{

0 commit comments

Comments
 (0)