diff --git a/README.md b/README.md index e4230e6..e005ee4 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@
-
+
Designed by HugoRCD
Nuxt module for Better Auth
@@ -20,7 +20,7 @@ ## Documentation -**[nuxt-better-auth.onmax.me](https://nuxt-better-auth.onmax.me/)** +**[better-auth.nuxtjs.org](https://better-auth.nuxtjs.org)** ## License diff --git a/docs/app/app.config.ts b/docs/app/app.config.ts index e9bcbf0..2382355 100644 --- a/docs/app/app.config.ts +++ b/docs/app/app.config.ts @@ -1,6 +1,6 @@ export default defineAppConfig({ github: { - url: 'https://github.com/onmax/nuxt-better-auth', + url: 'https://github.com/nuxt-modules/better-auth', branch: 'main', rootDir: 'docs', }, diff --git a/docs/app/components/OgImage/OgImageDocs.vue b/docs/app/components/OgImage/OgImageDocs.vue index 2070197..d9354fb 100644 --- a/docs/app/components/OgImage/OgImageDocs.vue +++ b/docs/app/components/OgImage/OgImageDocs.vue @@ -59,7 +59,7 @@ defineProps<{ - github.com/onmax/nuxt-better-auth + github.com/nuxt-modules/better-auth diff --git a/docs/app/components/app/AppHeader.vue b/docs/app/components/app/AppHeader.vue index 9725817..7ab688d 100644 --- a/docs/app/components/app/AppHeader.vue +++ b/docs/app/components/app/AppHeader.vue @@ -8,7 +8,7 @@ const isDocsPage = computed(() => route.path.startsWith('/getting-started') || r const navLinks = [ { name: 'docs', path: '/getting-started' }, - { name: 'demo', path: 'https://demo-nuxt-better-auth.onmax.me', external: true }, + { name: 'demo', path: 'https://demo.better-auth.nuxtjs.org', external: true }, { name: 'better-auth', path: 'https://www.better-auth.com', external: true }, ] @@ -59,7 +59,7 @@ const navLinks = [- npx nuxi module add @onmax/nuxt-better-auth@alpha + npx nuxi module add @nuxtjs/better-auth@alpha
built with - + nuxt-better-auth.
diff --git a/playground/app/pages/index.vue b/playground/app/pages/index.vue index bdd5a18..4a440bd 100644 --- a/playground/app/pages/index.vue +++ b/playground/app/pages/index.vue @@ -23,7 +23,7 @@ const { loggedIn } = useUserSession() Official demo to showcase better-auth. features using - nuxt-better-auth. + nuxt-better-auth.built with - + nuxt-better-auth.
diff --git a/playground/app/pages/register.vue b/playground/app/pages/register.vue index 162fcca..f4b68b0 100644 --- a/playground/app/pages/register.vue +++ b/playground/app/pages/register.vue @@ -127,7 +127,7 @@ async function handleSignUp() {built with - + nuxt-better-auth.
diff --git a/playground/app/pages/reset-password.vue b/playground/app/pages/reset-password.vue index 809e22b..13d787a 100644 --- a/playground/app/pages/reset-password.vue +++ b/playground/app/pages/reset-password.vue @@ -86,7 +86,7 @@ async function handleResetPassword() {built with - + nuxt-better-auth.
diff --git a/playground/nuxt.config.ts b/playground/nuxt.config.ts index b5182bd..492ee30 100644 --- a/playground/nuxt.config.ts +++ b/playground/nuxt.config.ts @@ -34,7 +34,7 @@ export default defineNuxtConfig({ runtimeConfig: { public: { - siteUrl: 'https://demo-nuxt-better-auth.onmax.me', + siteUrl: 'https://demo.better-auth.nuxtjs.org', }, }, @@ -63,7 +63,7 @@ export default defineNuxtConfig({ nodeCompat: true, wrangler: { name: 'nuxt-better-auth-demo', - routes: [{ pattern: 'demo-nuxt-better-auth.onmax.me', zone_name: 'onmax.me', custom_domain: true }], + routes: [{ pattern: 'demo.better-auth.nuxtjs.org', zone_name: 'nuxtjs.org', custom_domain: true }], observability: { enabled: true, logs: { enabled: true, invocation_logs: true } }, }, }, diff --git a/src/module.ts b/src/module.ts index f7b218d..5f31b05 100644 --- a/src/module.ts +++ b/src/module.ts @@ -144,7 +144,7 @@ async function promptForSecret(rootDir: string): Promise