Files
artapi/nuxt.config.ts
Arthur DANJOU fecf990810 chore: update nuxt.config.ts and package.json for dependency upgrades and cleanup
- Removed unnecessary comments from nuxt.config.ts for better readability.
- Upgraded @nuxt/eslint from ^1.4.1 to 1.10.0.
- Updated nuxt from ^3.17.5 to 4.2.1 and vue from ^3.5.16 to 3.5.24.
- Updated vue-router from ^4.5.1 to 4.6.3.
- Updated devDependencies:
  - @nuxt/eslint-config from ^1.4.1 to 1.10.0.
  - eslint from ^9.29.0 to 9.39.1.
  - typescript from ^5.8.3 to 5.9.3.
  - vue-tsc from ^2.2.10 to 3.1.3.
  - wrangler from ^4.20.1 to 4.47.0.
2025-11-12 16:25:39 +01:00

43 lines
627 B
TypeScript

export default defineNuxtConfig({
modules: ['@nuxthub/core', '@nuxt/eslint', '@nuxt/content'],
devtools: {
enabled: true,
timeline: {
enabled: true
}
},
runtimeConfig: {
public: {
helloText: 'Hello from the Edge 👋'
}
},
future: { compatibilityVersion: 4 },
compatibilityDate: '2025-11-12',
nitro: {
experimental: {
openAPI: true
}
},
hub: {
database: true,
ai: true,
analytics: true,
kv: true,
cache: true
},
eslint: {
config: {
stylistic: {
quotes: 'single',
commaDangle: 'never'
}
}
}
})