event - build page: /next/dist/pages/_error in next start output
See original GitHub issueWhat version of Next.js are you using?
10.2.2
What version of Node.js are you using?
14.16.1
What browser are you using?
Chrome
What operating system are you using?
Windows
How are you deploying your application?
next start
Describe the Bug
Not really a “bug” per se, but i am getting the following message whenever running next start on my project:
event - build page: /next/dist/pages/_error
I do not know what this means and I am tired of seeing this in my output every time I start the development server.
Expected Behavior
Expected beahviour for me would be to not be seeing this message everytime i run yarn start
To Reproduce
Very Basic _App.js which is generating this issue:
import '../styles/app.css'
import Image from 'next/image';
const App = () => {
return(
<div className="home">
<Image
src='/logo.PNG'
alt="image"
height={306/1.5}
width={356/1.5}
/>
</div>
)
};
export default App;
Issue Analytics
- State:
- Created 2 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Next.js Removing Error Page After Compiling #9876 - GitHub
Bug report Describe the bug Next.js is removing the default error page. [ event ] build page: /next/dist/pages/_error [ wait ] compiling ....
Read more >Module parse fail in next js zero-config - Stack Overflow
Solved. It was an environment issue in my user folder. It was a global babel settings which interfered only with the nextjs package...
Read more >Next.js - Pages - Tutorialspoint
In Next.js, a page is a React Component and are exported from pages directory. Each page is associated with a route based on...
Read more >Deployment - Next.js
Learn how to deploy your Next.js app to production, either managed or ... Output for the build cache and cached images, responses, and...
Read more >Newbie getting build errors with Next.JS : r/reactjs - Reddit
Hi, I'm getting a build error, website looks fine with npm run dev. Not sure what info I should attach, if something extra...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I just received this while trying to figure out what is going on. The MaxListenersExceededWarning part is new perhaps to someone that knows the code base better that gives a hint.
This issue has been automatically locked due to no recent activity. If you are running into a similar issue, please create a new issue with the steps to reproduce. Thank you.