ontoref/assets/presentation/slidev.config.ts
Jesús Pérez d59644b96f
feat: unified auth model, project onboarding, install pipeline, config management
The full scope across this batch: POST /sessions key→token exchange, SessionStore dual-index with revoke_by_id, CLI Bearer injection (ONTOREF_TOKEN), ontoref setup
  --gen-keys, install scripts, daemon config form roundtrip, ADR-004/005, on+re self-description update (fully-self-described), and landing page refresh.
2026-03-13 20:56:31 +00:00

39 lines
775 B
TypeScript

import { defineConfig } from "slidev/types";
export default defineConfig({
// theme: 'default',
theme: "./themes/rust-vibe",
// Point to parent directory's public assets
publicDir: "./public",
title: "Why I Needed Rust, Finally",
subtitle: "Infrastructure Automation I Can Sleep On",
author: "Jesús Pérez Lorenzo",
keywords: "Rust, Infrastructure, Provisioning, Type Safety",
// css: ['./theme/dark-rust.css'],
fonts: {
sans: "Inter",
serif: "Merriweather",
mono: "Fira Code",
},
defaults: {
layout: "default",
transition: "fade",
},
slideWidth: 1024,
canvasWidth: 980,
aspectRatio: "16/9",
monaco: {
dev: true,
diff: true,
},
preloadImages: false,
highlighter: "shiki",
colorSchema: "dark",
});