PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Blocks

    Design blocks for your website

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Question By
Solved

Wave 3 - Error due to missing settings in /config/devdojo/auth

Solved
easypeasy

Nov 24th, 2024 11:22 AM

while trying out wave 3, i am currently receiving the following error message, among others:

Unable to rewrite key "registration_include_password_confirmation_field" in config, does it exist?

Current Settings in Wave 3:

'redirect_after_auth' => '/dashboard',
'registration_show_password_same_screen' => true,
'registration_include_name_field' => true,
'registration_require_email_verification' => false,
'enable_branding' => true,
'dev_mode' => false,
'enable_2fa' => false, // Enable or disable 2FA functionality globally
'login_show_social_providers' => true,
'social_providers_location' => 'bottom',

Currently available based on https://github.com/thedevdojo/auth/blob/main/config/devdojo/auth/settings.php

'redirect_after_auth' => '/',
'registration_show_password_same_screen' => true,
'registration_include_name_field' => false,
'registration_include_password_confirmation_field' => false,
'registration_require_email_verification' => false,
'enable_branding' => true,
'dev_mode' => false,
'enable_2fa' => false, // Enable or disable 2FA functionality globally
'login_show_social_providers' => true,
'center_align_social_provider_button_content' => false,
'social_providers_location' => 'bottom',
'check_account_exists_before_login' => false,
bobbyiliev

Nov 25th, 2024 02:04 AM

Best Answer

Hey!

Thank you for reporting that problem!

I've submitted a PR with a fix for this:

https://github.com/thedevdojo/wave/pull/168

- Bobby