feat: add clerk auth support with convex (#548)

This commit is contained in:
Aman Varshney
2025-08-29 00:21:08 +05:30
committed by GitHub
parent 8d48ae0359
commit 54bcdf1cbc
153 changed files with 1954 additions and 771 deletions

View File

@@ -62,7 +62,7 @@ async function generateAnalyticsData() {
try {
console.log("🔄 Fetching analytics data...");
const response = await fetch("https://r2.amanv.dev/export.csv");
const response = await fetch("https://r2.better-t-stack.dev/export.csv");
let csvText = await response.text();
// Fix malformed CSV data - if it's all on one line, try to split it properly