Added first draft of story

This commit is contained in:
Alexis
2024-12-09 23:58:16 +01:00
parent 323eedec56
commit 49574d8ef1
8 changed files with 170 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: false },
devtools: { enabled: true },
modules: [
"@nuxtjs/supabase",
@@ -37,7 +37,10 @@ export default defineNuxtConfig({
supabase: {
redirectOptions: {
login: "/",
callback: "/my/"
callback: "/my/",
exclude: [
"/calendars(/*)?"
]
}
},
@@ -57,4 +60,4 @@ export default defineNuxtConfig({
fallback: "dark",
},
eslint: {}
})
})