If you've used the Zakeke 3D configurator React library to develop a custom 3D configurator interface for your store, you can apply it by defining a filter function on your theme functions.php file, as in this example:
add_filter( 'zakeke_configurator_url', 'custom_zakeke_configurator_url' );
function custom_zakeke_configurator_url($url) {
$url = 'https://your-interace.com/';
return $url;
}
That url must be a public one - it can't be a localhost one, and it shouldn't have any query string in it.