preview.style.backgroundImage = "url(icons/Icon.png)"; //preview это там, где меняется изображение
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="bg"></div>
</body>
<style>
.bg{
background: url("https://centr-plyazhnogo-voleybolu.netlify.app/photo-header.jpg");
width: 300px;
height: 300px;
background-size: cover;
}
</style>
<script>
let preview = document.querySelector(".bg")
preview.onclick = function(){
preview.style.backgroundImage = "url('https://centr-plyazhnogo-voleybolu.netlify.app/img11.jpg')"
}
</script>
</html>