Files
wehub-resource-sync 9f48d4a18c
Docs / Build (push) Has been cancelled
Docs / Deploy (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:37:25 +08:00

20 lines
380 B
JavaScript

import { defineConfig } from "astro/config";
const site = process.env.ASTRO_SITE ?? "https://ccrdesk.top";
const base = process.env.ASTRO_BASE ?? "/";
export default defineConfig({
site,
base,
output: "static",
markdown: {
shikiConfig: {
themes: {
light: "github-light",
dark: "github-dark",
},
defaultColor: false,
},
},
});