feat(website): add umami analytics
All checks were successful
Build and Push Docker Image / build (push) Successful in 48s

This commit is contained in:
Lars Hampe 2024-09-28 17:40:23 +02:00
parent f1b4560d66
commit a9fbf96b62

View File

@ -1,13 +1,21 @@
import starlight from '@astrojs/starlight'
// @ts-check
import { defineConfig } from 'astro/config'
// https://astro.build/config
export default defineConfig({
outDir: '../../build/website',
integrations: [
starlight({
title: 'boring.tools',
head: [
{
tag: 'script',
attrs: {
src: 'https://umami.hashdot.co/script.js',
'data-website-id': '78b1d598-5783-4bc5-a414-4319fea1876a',
defer: true,
},
},
],
social: {
github: 'https://github.com/boring-tools/boring.tools',
},