Hi, I was correctly working with supabase until I created those endpoints, now I get this error
Your project's URL and Key are required to create a Supabase client! Check your Supabase project's API settings to find these values https://supabase.com/dashboard/project/_/settings/api
I have the .env files like this
SUPABASE_URL=
SUPABASE_ANON_KEY=
this is my nuxt config
export default defineNuxtConfig({
compatibilityDate: '2025-05-15',
devtools: { enabled: true },
modules: [
'@nuxtjs/tailwindcss',
'@pinia/nuxt',
'@nuxtjs/color-mode',
'@nuxtjs/i18n',
'@nuxtjs/supabase'
],
colorMode: {
classSuffix: ''
},
i18n: {
locales: ['en'],
defaultLocale: 'en'
},
runtimeConfig: {
public: {
//stripeKey: process.env.STRIPE_PUBLIC_KEY,
SUPABASE_URL: process.env.SUPABASE_URL,
SUPABASE_ANON_KEY: process.env.SUPABASE_ANON_KEY,
},
//stripeSecret: process.env.STRIPE_SECRET_KEY,
}
})