mirror of
https://github.com/ArthurDanjou/artmcp.git
synced 2026-01-14 14:54:22 +01:00
Initial commit for ArtRag
This commit is contained in:
49
nuxt.config.ts
Normal file
49
nuxt.config.ts
Normal file
@@ -0,0 +1,49 @@
|
||||
// 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'
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user