mirror of
https://github.com/sonr-io/crypto.git
synced 2026-09-17 01:26:23 +00:00
50 lines
876 B
TypeScript
50 lines
876 B
TypeScript
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",
|
|
},
|
|
});
|