mirror of
https://github.com/ArthurDanjou/artapi.git
synced 2026-01-14 22:09:27 +01:00
81 lines
1.3 KiB
TypeScript
81 lines
1.3 KiB
TypeScript
export default defineNuxtConfig({
|
|
|
|
modules: [
|
|
'@nuxthub/core',
|
|
'@nuxt/eslint',
|
|
'@nuxt/content',
|
|
'@nuxtjs/mcp-toolkit',
|
|
'nuxt-studio'
|
|
],
|
|
|
|
devtools: {
|
|
enabled: true,
|
|
|
|
timeline: {
|
|
enabled: true
|
|
}
|
|
},
|
|
|
|
runtimeConfig: {
|
|
public: {
|
|
helloText: 'Hello from the Edge 👋'
|
|
},
|
|
discord: {
|
|
userId: '',
|
|
id: '',
|
|
token: ''
|
|
},
|
|
statusPage: '',
|
|
wakatime: {
|
|
userId: '',
|
|
coding: '',
|
|
editors: '',
|
|
languages: '',
|
|
os: ''
|
|
}
|
|
},
|
|
|
|
future: { compatibilityVersion: 4 },
|
|
experimental: {
|
|
asyncContext: true
|
|
},
|
|
compatibilityDate: '2025-11-12',
|
|
|
|
nitro: {
|
|
experimental: {
|
|
openAPI: true
|
|
}
|
|
},
|
|
|
|
hub: {
|
|
database: true,
|
|
ai: true,
|
|
analytics: true,
|
|
cache: true
|
|
},
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
quotes: 'single',
|
|
commaDangle: 'never'
|
|
}
|
|
}
|
|
},
|
|
|
|
mcp: {
|
|
name: 'ArtMCP',
|
|
version: '1.0.0'
|
|
},
|
|
|
|
studio: {
|
|
// Git repository configuration (owner and repo are required)
|
|
repository: {
|
|
provider: 'github', // 'github' or 'gitlab'
|
|
owner: 'arthurdanjou', // your GitHub/GitLab username or organization
|
|
repo: 'artmcp', // your repository name
|
|
branch: 'master' // the branch to commit to (default: 'main')
|
|
}
|
|
}
|
|
})
|