feat: Add 3D activity heatmap component using D3 to visualize combined GitHub and Gitea contributions, accessible via a new tab.

This commit is contained in:
2025-12-15 20:33:51 +00:00
parent 06968a6820
commit 85d13b44c2
6 changed files with 734 additions and 3 deletions

View File

@@ -4,4 +4,13 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api/gitea': {
target: 'https://git.mati.ss',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api\/gitea/, '')
}
}
}
})