I’m not the best with coding (trying to learn as I go). How do I add to the code below, an internal page redirect when a member logs in to the site??? Thanks in advance.
import wixLocation from ‘wix-location’ ;
import { authentication } from ‘wix-members’ ;
$w . onReady ( function () {
authentication . onLogout (() => {
console . log ( 'Member logged out.' );
wixLocation . to ( "/home" );
});