-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
52 lines (52 loc) · 2.23 KB
/
Copy pathnuxt.config.ts
File metadata and controls
52 lines (52 loc) · 2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
export default defineNuxtConfig({
extends: ['docus'],
modules: ['@nuxtjs/sitemap'],
compatibilityDate: '2025-07-15',
routeRules: {
'/': { redirect: { to: '/welcome', statusCode: 301 } },
'/start-here/getting-started': { redirect: { to: '/local/getting-started', statusCode: 301 } },
'/start-here/why-basic-memory': { redirect: { to: '/start-here/what-is-basic-memory', statusCode: 301 } },
'/changelog': { redirect: { to: '/whats-new/changelog', statusCode: 301 } },
'/whats-new/v0.22.0': { redirect: { to: '/whats-new/changelog', statusCode: 301 } },
'/reference/v0.19-migration': { redirect: { to: '/whats-new/changelog', statusCode: 301 } },
'/cloud/edit-locally-and-in-the-app': { redirect: { to: '/cloud/cloud-sync', statusCode: 301 } },
'/cloud/user-guide': { redirect: { to: '/cloud/cloud-guide', statusCode: 301 } },
'/teams/partners': { redirect: { to: '/partners/about', statusCode: 301 } },
'/concepts/canvas': { redirect: { to: '/local/canvas', statusCode: 301 } },
'/integrations/claude-research-mode': { redirect: { to: '/integrations/claude-desktop', statusCode: 301 } },
},
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,
},
},
})