mirror of
https://github.com/ArthurDanjou/artmcp.git
synced 2026-01-14 12:54:21 +01:00
50 lines
1023 B
TypeScript
50 lines
1023 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
// https://nuxt.com/modules
|
|
modules: ['@nuxthub/core', '@nuxt/eslint', '@nuxt/content'],
|
|
|
|
// https://devtools.nuxt.com
|
|
devtools: {
|
|
enabled: true,
|
|
|
|
timeline: {
|
|
enabled: true
|
|
}
|
|
},
|
|
|
|
// Env variables - https://nuxt.com/docs/getting-started/configuration#environment-variables-and-private-tokens
|
|
runtimeConfig: {
|
|
public: {
|
|
// Can be overridden by NUXT_PUBLIC_HELLO_TEXT environment variable
|
|
helloText: 'Hello from the Edge 👋'
|
|
}
|
|
},
|
|
future: { compatibilityVersion: 4 },
|
|
compatibilityDate: '2025-11-12',
|
|
|
|
nitro: {
|
|
experimental: {
|
|
openAPI: true
|
|
}
|
|
},
|
|
|
|
// https://hub.nuxt.com/docs/getting-started/installation#options
|
|
hub: {
|
|
database: true,
|
|
ai: true,
|
|
analytics: true,
|
|
kv: true,
|
|
cache: true
|
|
},
|
|
|
|
// Development config
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
quotes: 'single',
|
|
commaDangle: 'never'
|
|
}
|
|
}
|
|
}
|
|
})
|