Initial Nuxt data explorer setup
This commit is contained in:
14
nuxt4-app/nuxt.config.ts
Normal file
14
nuxt4-app/nuxt.config.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
ssr: false,
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: { enabled: true },
|
||||
modules: ['@nuxt/image', '@nuxt/ui', '@nuxt/test-utils'],
|
||||
runtimeConfig: {
|
||||
supabase: {
|
||||
url: process.env.SUPABASE_URL || process.env.NEXT_PUBLIC_SUPABASE_URL,
|
||||
serviceRoleKey:
|
||||
process.env.SUPABASE_SERVICE_ROLE_KEY || process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY
|
||||
}
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user