[READ-ONLY] Mirror of https://github.com/danielroe/carpenter. LLM-powered automations for triaging Nuxt issues
github.com/nuxt/nuxt
bot
cloudflare-pages
llm
webhook
575 B
22 lines
1// https://nuxt.com/docs/api/configuration/nuxt-config
2export default defineNuxtConfig({
3 modules: ['@nuxthub/core', '@nuxt/eslint', 'nuxt-webhook-validators'],
4 devtools: { enabled: true },
5 runtimeConfig: {
6 github: {
7 token: process.env.NUXT_GITHUB_TOKEN || '',
8 targetRepositoryNodeId: process.env.NUXT_GITHUB_TARGET_REPOSITORY_NODE_ID || '',
9 },
10 },
11 routeRules: {
12 '/': { prerender: true },
13 },
14 experimental: { noVueServer: true },
15 compatibilityDate: '2024-08-07',
16 hub: {},
17 eslint: {
18 config: {
19 stylistic: true,
20 },
21 },
22})