-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
38 lines (33 loc) · 965 Bytes
/
Copy pathnuxt.config.ts
File metadata and controls
38 lines (33 loc) · 965 Bytes
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2025-06-15',
devtools: { enabled: true },
modules: ['@nuxt/ui'],
// Inter is loaded via @import in app/assets/css/main.css, so disable Nuxt UI's
// @nuxt/fonts integration — its dev handler crashes under the Storybook-Nuxt
// Vite middleware (h3 event has no `.res`).
ui: {
fonts: false,
},
css: ['~/assets/css/main.css'],
app: {
head: {
title: 'ARCP Console',
htmlAttrs: { lang: 'en' },
meta: [
{
name: 'description',
content:
'Control and observe agent runs on an ARCP (Agent Runtime Control Protocol) server.',
},
],
},
},
runtimeConfig: {
public: {
// Base URL of the ARCP server this console talks to.
// Override at runtime with NUXT_PUBLIC_ARCP_SERVER_URL.
arcpServerUrl: 'http://localhost:8080',
},
},
})