Removed http/2 push for service worker prefetches
This commit is contained in:
parent
b0a30cdbfa
commit
97dfcf43ae
5
main.go
5
main.go
@ -62,6 +62,11 @@ func configure(app *aero.Application) *aero.Application {
|
||||
// Prefetch all collections
|
||||
arn.DB.Prefetch()
|
||||
|
||||
// Do not use HTTP/2 push on service worker requests
|
||||
app.AddPushCondition(func(ctx *aero.Context) bool {
|
||||
return ctx.Request().Header().Get("X-Source") != "service-worker"
|
||||
})
|
||||
|
||||
// Specify test routes
|
||||
for route, examples := range routeTests {
|
||||
app.Test(route, examples)
|
||||
|
@ -211,8 +211,14 @@ class MyServiceWorker {
|
||||
prefetchFullPage(url: string) {
|
||||
let fullPage = new Request(url.replace("/_/", "/"))
|
||||
|
||||
// Disable HTTP/2 push responses
|
||||
let headers = new Headers({
|
||||
"X-Source": "service-worker"
|
||||
})
|
||||
|
||||
let fullPageRefresh = fetch(fullPage, {
|
||||
credentials: "same-origin"
|
||||
credentials: "same-origin",
|
||||
headers
|
||||
}).then(response => {
|
||||
// Save the new version of the resource in the cache
|
||||
let cacheRefresh = caches.open(this.cache.version).then(cache => {
|
||||
|
Loading…
Reference in New Issue
Block a user