feat: Initial authentication logic and UX

This commit is contained in:
2026-01-13 21:07:11 -05:00
parent f9958701e6
commit c1094239a3
26 changed files with 715 additions and 9 deletions

View File

@@ -5,6 +5,7 @@ export default defineNuxtConfig({
"@lewebsimple/nuxt-graphql",
"@nuxt/eslint",
"@nuxt/ui",
"nuxt-auth-utils",
],
components: {
@@ -36,10 +37,12 @@ export default defineNuxtConfig({
},
graphql: {
context: "server/graphql/context.ts",
schemas: {
wp: {
type: "remote",
url: `${process.env.NUXT_WP_URL || "https://wp-headless.ledevsimple.ca"}/graphql`,
middleware: "server/graphql/wp-middleware.ts",
},
},
saveSdl: "server/graphql/schema.graphql",