Some checks failed
ci / ci (22, ubuntu-latest) (push) Failing after 25m52s
Made-with: Cursor
44 lines
689 B
TypeScript
44 lines
689 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
modules: [
|
|
'@nuxt/eslint',
|
|
'@nuxt/ui',
|
|
'@nuxtjs/supabase'
|
|
],
|
|
|
|
devtools: {
|
|
enabled: true
|
|
},
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
runtimeConfig: {
|
|
anthropicApiKey: process.env.ANTHROPIC_API_KEY,
|
|
public: {}
|
|
},
|
|
|
|
supabase: {
|
|
redirect: true,
|
|
redirectOptions: {
|
|
login: '/login',
|
|
callback: '/confirm',
|
|
exclude: ['/login']
|
|
}
|
|
},
|
|
|
|
routeRules: {
|
|
'/': { prerender: false }
|
|
},
|
|
|
|
compatibilityDate: '2025-01-15',
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
commaDangle: 'never',
|
|
braceStyle: '1tbs'
|
|
}
|
|
}
|
|
}
|
|
})
|