When testing my site with PageSpeed Insights I get the warning "Uses deprecated APIs".
The only pages I have with XMLHTTPRequests are Hype documents, and there are many. What can I do to avoid this problem?
When testing my site with PageSpeed Insights I get the warning "Uses deprecated APIs".
The "Source" column seems to show this is in jquery and not in Hype.
Perhaps your Hype documents are using jquery?
The only XMLHTTPRequest Hype's export runtime uses is related to loading audio files, and we explicitly set it to not be synchronous (via passing true
to the asynchronous flag). However should you want to try eliminating even that usage, you can uncheck "Use low latency Web Audio API" in the document inspector.
Thank you. That's useful.