forked from Ngxba/claude-code-cli-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
62 lines (52 loc) · 2.1 KB
/
Copy pathnuxt.config.ts
File metadata and controls
62 lines (52 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
export default defineNuxtConfig({
modules: ['@nuxt/ui'],
devtools: { enabled: true },
future: { compatibilityVersion: 4 },
css: ['~/assets/css/main.css'],
compatibilityDate: '2025-01-15',
runtimeConfig: {
claudeDir: process.env.CLAUDE_DIR || '',
claudeCliPath: process.env.CLAUDE_CLI_PATH || '',
},
nitro: {
experimental: {
websocket: true,
},
},
app: {
head: {
title: 'Claude Code Agent Manager',
htmlAttrs: { lang: 'en' },
meta: [
{ name: 'description', content: 'Visual manager for Claude Code agents, commands, skills, and plugins. Configure AI assistants without touching the terminal.' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'theme-color', content: '#F7F8FA' },
{ property: 'og:title', content: 'Agent Manager — Claude Code' },
{ property: 'og:description', content: 'Visual manager for Claude Code agents, commands, skills, and plugins. Configure AI assistants without touching the terminal.' },
{ property: 'og:type', content: 'website' },
{ name: 'twitter:card', content: 'summary' },
],
link: [
{ rel: 'icon', type: 'image/svg+xml', href: '/favicon.svg' },
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
{ rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' },
{ rel: 'stylesheet', href: 'https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&display=swap' },
{ rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.0.3/index.css' },
{ rel: 'stylesheet', href: 'https://cdn.jsdelivr.net/npm/@fontsource/geist-mono@5.0.3/index.css' },
],
},
pageTransition: { name: 'page', mode: 'out-in' },
},
components: [
{ path: '~/components/chat', pathPrefix: false },
{ path: '~/components/studio', pathPrefix: false },
{ path: '~/components/cli', pathPrefix: false },
{ path: '~/components' },
],
colorMode: {
preference: 'light',
},
routeRules: {
'/templates': { redirect: '/explore' },
},
})