📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-08-31 05:00:46 +08:00
parent 8fea3d18fe
commit 0b2b056032
347 changed files with 38446 additions and 136 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from "astro/config";
const repositoryName = process.env.GITHUB_REPOSITORY?.split("/")[1];
const isGitHubPages = Boolean(process.env.GITHUB_ACTIONS && repositoryName);
export default defineConfig({
site: process.env.SITE_URL ?? "http://localhost:4321",
base: isGitHubPages ? `/${repositoryName}` : "/",
output: "static",
trailingSlash: "never",
});