feat(ssr): add sitemap generator
This commit is contained in:
@ -2,7 +2,7 @@ import AnalyticsChart from "@/components/AnalyticsChart";
|
||||
import Card from "@/components/Card";
|
||||
import Container from "@/components/Container";
|
||||
import { ScoresaberMetricsHistory } from "@/schemas/fascinated/scoresaberMetricsHistory";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import ssrSettings from "@/ssrSettings.json";
|
||||
import { formatNumber } from "@/utils/numberUtils";
|
||||
import { isProduction } from "@/utils/utils";
|
||||
import { Metadata } from "next";
|
||||
|
@ -1,5 +1,5 @@
|
||||
import AppProvider from "@/components/AppProvider";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import ssrSettings from "@/ssrSettings.json";
|
||||
import clsx from "clsx";
|
||||
import { Metadata } from "next";
|
||||
import { Inter } from "next/font/google";
|
||||
|
@ -1,5 +1,5 @@
|
||||
import PlayerPage from "@/components/player/PlayerPage";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import ssrSettings from "@/ssrSettings.json";
|
||||
import { formatNumber } from "@/utils/numberUtils";
|
||||
import { ScoreSaberAPI } from "@/utils/scoresaber/api";
|
||||
import { normalizedRegionName } from "@/utils/utils";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import ssrSettings from "@/ssrSettings.json";
|
||||
import { isProduction } from "@/utils/utils";
|
||||
import Link from "next/link";
|
||||
import Card from "./Card";
|
||||
|
@ -125,7 +125,8 @@ export default function GlobalRanking({ page, country }: GlobalRankingProps) {
|
||||
<p>
|
||||
You are viewing{" "}
|
||||
{country
|
||||
? "scores from " + normalizedRegionName(country)
|
||||
? "scores from " +
|
||||
normalizedRegionName(country.toUpperCase())
|
||||
: "Global scores"}
|
||||
</p>
|
||||
</div>
|
||||
|
6
src/ssrSettings.json
Normal file
6
src/ssrSettings.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"siteName": "ScoreSaber Reloaded",
|
||||
"description": "Scoresaber Reloaded is a new way to view your scores and get more stats about your and your plays",
|
||||
"siteUrl": "https://ssr.fascinated.cc",
|
||||
"proxy": "https://proxy.fascinated.cc"
|
||||
}
|
@ -1,7 +0,0 @@
|
||||
export const ssrSettings = {
|
||||
siteName: "ScoreSaber Reloaded",
|
||||
description:
|
||||
"Scoresaber Reloaded is a new way to view your scores and get more stats about your and your plays",
|
||||
siteUrl: "https://ssr.fascinated.cc",
|
||||
proxy: "https://proxy.fascinated.cc",
|
||||
};
|
@ -1,6 +1,6 @@
|
||||
import { BeatLeaderPlayer } from "@/schemas/beatleader/player";
|
||||
import { BeatleaderScore } from "@/schemas/beatleader/score";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import ssrSettings from "@/ssrSettings.json";
|
||||
import { FetchQueue } from "../fetchWithQueue";
|
||||
import { formatString } from "../string";
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { BeatsaverMap } from "@/schemas/beatsaver/BeatsaverMap";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import ssrSettings from "@/ssrSettings.json";
|
||||
import { FetchQueue } from "../fetchWithQueue";
|
||||
import { formatString } from "../string";
|
||||
|
||||
|
@ -2,7 +2,7 @@ import { ScoresaberLeaderboardInfo } from "@/schemas/scoresaber/leaderboard";
|
||||
import { ScoresaberPlayer } from "@/schemas/scoresaber/player";
|
||||
import { ScoresaberPlayerScore } from "@/schemas/scoresaber/playerScore";
|
||||
import { ScoresaberScore } from "@/schemas/scoresaber/score";
|
||||
import { ssrSettings } from "@/ssrSettings";
|
||||
import ssrSettings from "@/ssrSettings.json";
|
||||
import { FetchQueue } from "../fetchWithQueue";
|
||||
import { formatString } from "../string";
|
||||
|
||||
|
Reference in New Issue
Block a user