Tengo una secuencia de comandos que funciona de forma externa y anteriormente funcionó con uglify js. Ahora actualicé Symfony a la versión 4.3 y estoy compilando los activos con webpack encore e yarn. Parece que hay algún conflicto al compilar, el comando utilizado es 'yarn encore dev --watch' Script a continuación
var tag = document.createElement('script'); tag.src = "https://www.youtube.com/iframe_api"; var firstScriptTag = document.getElementsByTagName('script')[0]; firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); var player; function onYouTubeIframeAPIReady() { player = new YT.Player('theplayer', { height: '390', width: '640', videoId: 'M7lc1UVf-VE', playerVars: { 'playsinline': 1 }, events: { 'onReady': onPlayerReady, 'onStateChange': onPlayerStateChange } }); } // 4. The API will call this function when the video player is ready. function onPlayerReady(event) { event.target.playVideo(); } // 5. The API calls this function when the player's state changes. // The function indicates that when playing a video (state=1), // the player should play for six seconds and then stop. var done = false; function onPlayerStateChange(event) { if (event.data == YT.PlayerState.PLAYING && !done) { setTimeout(stopVideo, 6000); done = true; } } function stopVideo() { player.stopVideo(); }en la pagina web
<div id="theplayer"><h1>The Player</h1></div>¿Hay una manera de resolver esto? o, alternativamente, podría hacer referencia al javascript directamente sin compilar, ¿cómo haría esto?