mirror of
https://github.com/sonr-io/crypto.git
synced 2026-09-17 01:26:23 +00:00
feat(config): add Blume docs site configuration
This commit is contained in:
@@ -0,0 +1,49 @@
|
|||||||
|
import { defineConfig } from "blume";
|
||||||
|
|
||||||
|
export default defineConfig({
|
||||||
|
title: "Sonr Crypto",
|
||||||
|
description:
|
||||||
|
"Developer documentation for the Sonr cryptography library — curves, threshold signatures, MPC, zero-knowledge proofs, and identity primitives in Go.",
|
||||||
|
|
||||||
|
github: {
|
||||||
|
owner: "sonr-io",
|
||||||
|
repo: "crypto",
|
||||||
|
branch: "main",
|
||||||
|
},
|
||||||
|
|
||||||
|
theme: {
|
||||||
|
accent: "teal",
|
||||||
|
radius: "md",
|
||||||
|
mode: "system",
|
||||||
|
},
|
||||||
|
|
||||||
|
navigation: {
|
||||||
|
sidebar: {
|
||||||
|
display: "group",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
search: {
|
||||||
|
provider: "orama",
|
||||||
|
},
|
||||||
|
|
||||||
|
lastModified: true,
|
||||||
|
|
||||||
|
seo: {
|
||||||
|
og: { enabled: true },
|
||||||
|
sitemap: true,
|
||||||
|
robots: true,
|
||||||
|
structuredData: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
ai: {
|
||||||
|
llmsTxt: true,
|
||||||
|
},
|
||||||
|
|
||||||
|
// GitHub Pages project site: served from https://sonr-io.github.io/crypto
|
||||||
|
deployment: {
|
||||||
|
output: "static",
|
||||||
|
site: "https://sonr-io.github.io",
|
||||||
|
base: "/crypto",
|
||||||
|
},
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user