forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[dev-overlay] Remove old Dev Overlay (vercel#76256)
This PR removed the old overlay including the deprecated `buildActivity` and `appIsrStatus` options. Closes NDX-785 Closes NDX-855 Closes NDX-865 Closes NDX-866 Closes NDX-867 Closes NDX-868
- Loading branch information
1 parent
c8ac0bd
commit a89d55c
Showing
54 changed files
with
168 additions
and
1,334 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
119 changes: 0 additions & 119 deletions
119
packages/next/src/client/components/react-dev-overlay/app/old-react-dev-overlay.tsx
This file was deleted.
Oops, something went wrong.
5 changes: 1 addition & 4 deletions
5
packages/next/src/client/components/react-dev-overlay/app/react-dev-overlay.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
import OldReactDevOverlay from './old-react-dev-overlay' | ||
import NewReactDevOverlay from '../_experimental/app/react-dev-overlay' | ||
|
||
export default Boolean(process.env.__NEXT_EXPERIMENTAL_NEW_DEV_OVERLAY) | ||
? NewReactDevOverlay | ||
: OldReactDevOverlay | ||
export default NewReactDevOverlay |
Oops, something went wrong.