简体   繁体   中英

plyr.js instantiation causing 503 error in production

I'm instantiating plyr.js using their beta (3.0.0) in elixir/phoenix and I'm getting these errors

"Failed to load resource: the server responded with a status of 503 (Service Unavailable)"

This prevents me from scrolling on the page at all

for whatever reason if I don't include the Plyr instantiation in the JS files, the 503 error goes away. Anyone have any idea why this occurs?

Here is the JS code:

import Plyr from 'plyr';

(function() {
    document.addEventListener('DOMContentLoaded', function() {

        const plyr = new Plyr('#player', {
            autoplay: true,
            controls: [''],
            fullscreen: {
                enabeled: false
            },
            loop: { 
                active: true }
        });

    });

})()

Looks like the fact that this is in beta makes this a legitimate bug. It has been filed to Github.

For now the developers of Plyr recommend using v2 for production

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM