Skip to content

Commit

Permalink
docs: add fathom analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarosabu committed Nov 27, 2023
1 parent 4878a95 commit e57cc73
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion docs/.vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,30 @@ import { templateCompilerOptions } from '@tresjs/core'
export default defineConfig({
title: 'Post-processing',
description: 'Post-processing effects for ViteJS',
head: [['link', { rel: 'icon', type: 'image/svg', href: '/favicon.svg' }]],
head: [
['link', { rel: 'icon', type: 'image/svg', href: '/favicon.svg' }],
['meta', { name: 'theme-color', content: '#82DBC5' }],
['meta', { name: 'twitter:card', content: 'summary_large_image' }],
['meta', { name: 'twitter:site', content: '@tresjs_dev' }],
['meta', { name: 'twitter:creator', content: '@tresjs_dev' }],
['meta', { property: 'og:type', content: 'website' }],
['meta', { property: 'og:site_name', content: 'TresJS' }],
[
'meta',
{
property: 'og:image',
content: 'https://repository-images.githubusercontent.com/571314349/10996566-7f70-473b-a8e5-4e56fc0ca850',
},
],
[
'meta',
{
property: 'twitter:image',
content: 'https://repository-images.githubusercontent.com/571314349/10996566-7f70-473b-a8e5-4e56fc0ca850',
},
],
['script', { defer: 'true', 'data-site': 'OWBUVCJK', src: 'https://cdn.usefathom.com/script.js' }],
],
themeConfig: {
logo: '/logo.svg',
search: {
Expand Down

0 comments on commit e57cc73

Please sign in to comment.