-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
39 lines (39 loc) · 1.23 KB
/
nuxt.config.ts
File metadata and controls
39 lines (39 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
export default defineNuxtConfig({
extends: ['docus'],
modules: ['@nuxtjs/sitemap'],
compatibilityDate: '2025-07-15',
app: {
head: {
meta: [
{
name: 'msvalidate.01',
content: '68D1B3FDD385F6EE2A92C3711AA66E4A',
},
],
script: [
{
src: 'https://cloud.umami.is/script.js',
defer: true,
'data-website-id': '8d51086e-5c67-401e-97b0-b24706a6d4f3',
},
],
},
},
site: {
name: 'Basic Memory',
url: 'https://docs.basicmemory.com',
},
llms: {
domain: 'https://docs.basicmemory.com',
title: 'Basic Memory Documentation',
description: 'Documentation for Basic Memory - a knowledge management system that gives AI assistants persistent memory through the Model Context Protocol (MCP). Supports both cloud and local deployments.',
full: {
title: 'Basic Memory Complete Documentation',
description: 'Complete technical documentation for Basic Memory including setup guides, MCP tools reference, knowledge format specifications, and integration guides for Claude, ChatGPT, Gemini, and other AI assistants.',
},
contentRawMarkdown: {
excludeCollections: [],
rewriteLLMSTxt: true,
},
},
})