mirror of
https://github.com/ArthurDanjou/artapi.git
synced 2026-01-14 12:44:21 +01:00
- Removed MCP server integration and related components from index.vue and contact.json. - Updated project documentation to reflect the new ArtAPI server, including changes to project metadata and descriptions. - Eliminated MCP toolkit dependencies from nuxt.config.ts and package.json. - Introduced new REST API endpoints for chat prompts, replacing previous MCP prompts. - Deleted obsolete MCP resources and prompts, streamlining the codebase for a more focused API approach.
80 lines
1.1 KiB
TypeScript
80 lines
1.1 KiB
TypeScript
export default defineNuxtConfig({
|
|
|
|
modules: [
|
|
'@nuxthub/core',
|
|
'@nuxt/eslint',
|
|
'@nuxt/ui',
|
|
'@nuxt/content',
|
|
'nuxt-studio'
|
|
],
|
|
|
|
devtools: {
|
|
enabled: true
|
|
},
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
ui: {
|
|
theme: {
|
|
colors: [
|
|
'primary',
|
|
'secondary',
|
|
'tertiary',
|
|
'info',
|
|
'success',
|
|
'warning',
|
|
'error',
|
|
'blue'
|
|
]
|
|
}
|
|
},
|
|
|
|
runtimeConfig: {
|
|
discord: {
|
|
userId: '',
|
|
id: ''
|
|
},
|
|
statusPage: '',
|
|
wakatime: {
|
|
userId: '',
|
|
coding: '',
|
|
editors: '',
|
|
languages: '',
|
|
os: ''
|
|
}
|
|
},
|
|
|
|
experimental: {
|
|
asyncContext: true
|
|
},
|
|
compatibilityDate: '2025-12-13',
|
|
|
|
nitro: {
|
|
preset: 'cloudflare_module'
|
|
},
|
|
|
|
hub: {
|
|
cache: true,
|
|
db: 'sqlite'
|
|
},
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
quotes: 'single',
|
|
commaDangle: 'never'
|
|
}
|
|
}
|
|
},
|
|
|
|
studio: {
|
|
route: '/studio',
|
|
repository: {
|
|
provider: 'github',
|
|
owner: 'ArthurDanjou',
|
|
repo: 'artapi',
|
|
branch: 'master'
|
|
}
|
|
}
|
|
})
|