Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
devknoll committed Mar 7, 2022
1 parent 565dc1d commit 5711bb2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/next/client/next-dev.js
Expand Up @@ -49,7 +49,9 @@ initialize({ webpackHMR })

function devPagesManifestListener(event) {
if (event.data.indexOf('devPagesManifest') !== -1) {
fetch(`${prefix}/_next/static/development/_devPagesManifest.json`)
fetch(
`${assetPrefix}/_next/static/development/_devPagesManifest.json`
)
.then((res) => res.json())
.then((manifest) => {
window.__DEV_PAGES_MANIFEST = manifest
Expand Down

0 comments on commit 5711bb2

Please sign in to comment.