Нет воспроизведения видео на iOS Chrome 71 с A-Frame

Что сработало для меня, просто добавьте это:

@app.before_request
def before_request():
    # When you import jinja2 macros, they get cached which is annoying for local
    # development, so wipe the cache every request.
    if 'localhost' in request.host_url or '0.0.0.0' in request.host_url:
        app.jinja_env.cache = {}

(, взятый из ответа @ dikkini )

0
задан Mustang 22 January 2019 в 13:59
поделиться