Member Sign-up / Login page redirect

This worked like a charm. This is the exact code I used to make that happen. Thanks so much!

$w . onReady ( function () {
import wixUsers from ‘wix-users’ ;
import wixLocation from ‘wix-location’ ;

wixUsers . onLogin (( user ) => {
wixLocation . to ( "your site link here " );

});