Skip to content

Commit

Permalink
Merge branch 'canary' into typescript-eslint-recommended-internal
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] committed Jul 31, 2023
2 parents 1dd34cb + 7182d4d commit fd0a6b1
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions packages/next/src/server/app-render/app-render.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1583,14 +1583,20 @@ export async function renderToHTMLOrFlight(
src:
`${assetPrefix}/_next/` +
src +
getAssetQueryString(false),
// Always include the timestamp query in development
// as Safari caches them during the same session, no
// matter what cache headers are set.
getAssetQueryString(true),
integrity: subresourceIntegrityManifest[src],
}))
: buildManifest.rootMainFiles.map(
(src) =>
`${assetPrefix}/_next/` +
src +
getAssetQueryString(false)
// Always include the timestamp query in development
// as Safari caches them during the same session, no
// matter what cache headers are set.
getAssetQueryString(true)
)),
],
},
Expand Down

0 comments on commit fd0a6b1

Please sign in to comment.