Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit $1"
}
}
}
6 changes: 3 additions & 3 deletions src/lib/hooks/is-hover.svelte.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
export class IsHover {
#current = $state(true);

constructor() { }
constructor() {}

get current() {
return this.#current;
}

destroy() { }
}
destroy() {}
}
2 changes: 1 addition & 1 deletion src/lib/sections/stats/Overview.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
<Stats />
<AdditionalStats />
</div>
</Section>
</Section>
23 changes: 19 additions & 4 deletions wrangler.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,30 @@
},
"routes": [
{
"pattern": "skycrypt-embed.lunarclient.com",
"custom_domain": true
"pattern": "skycrypt-embed.lunarclient.com",
"custom_domain": true
}
],
// Exported to Better Stack via the OTLP destinations configured in the
// Cloudflare dashboard (Workers & Pages -> Observability -> Telemetry).
// persist: true also retains everything in the CF dashboard.
"observability": {
"enabled": true
"enabled": true,
"logs": {
"enabled": true,
"destinations": ["betterstack-logs"],
"head_sampling_rate": 1.0,
"persist": true
},
"traces": {
"enabled": true,
"destinations": ["betterstack-traces"],
"head_sampling_rate": 0.01,
"persist": true
}
},
"vars": {
"PUBLIC_SERVER_API_URL": "https://sky.shiiyu.moe/api/",
"PUBLIC_API_URL": "https://sky.shiiyu.moe/api/"
}
}
}
Loading