mirror of
https://github.com/ArthurDanjou/artagents.git
synced 2026-01-14 04:04:32 +01:00
31 lines
440 B
TypeScript
31 lines
440 B
TypeScript
export default defineNuxtConfig({
|
|
modules: [
|
|
'@nuxthub/core',
|
|
'@nuxt/ui',
|
|
'@nuxt/icon',
|
|
'@nuxtjs/mdc',
|
|
],
|
|
|
|
devtools: { enabled: true },
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
runtimeConfig: {
|
|
cloudflare: {
|
|
email: '',
|
|
apiKey: '',
|
|
accountId: '',
|
|
},
|
|
},
|
|
|
|
future: { compatibilityVersion: 4 },
|
|
|
|
compatibilityDate: '2025-03-01',
|
|
|
|
hub: {
|
|
ai: true,
|
|
cache: true,
|
|
blob: true,
|
|
},
|
|
})
|