Fixing Next.js Error: Blank Page or 404 on Refresh

Updated: January 1, 2024 By: Guest Contributor One comment

Understanding the ‘Blank Page or 404’ Error in Next.js

Encountering a ‘Blank Page or 404’ error on refresh in a Next.js project can be puzzling. This commonly occurs due to client-side routing being utilized within a single-page application (SPA) framework when the server doesn’t know how to handle direct accesses to these client-routed paths. Essentially, what happens is that when you refresh the page, the Next.js server tries to look for an actual page at that route, but since the route is often dynamically generated in the client, it fails to find it and returns a 404 error.

Solving the Error with Next.js Server-Side Configuration

To resolve this issue, it is essential to make sure that the server is properly set up to handle routing for your Next.js project. In the dev mode, Next.js handles this automatically, but in production, you need to configure your server to fallback to the index.html for handling these routes. This setup process will differ depending on the hosting service or server you are using. You can configure your custom server or utilize the ‘next start’ command if you’re running your build on a Node.js server.

Implementing a Custom Server in Next.js

For those who are using custom servers with Next.js, it is crucial to handle the routes yourself. To ensure the server can handle deep links, you need to rewrite the server’s response to serve the index.html file on each path hit that does not point to a static file. This can be achieved using frameworks like Express in combination with next.js. Here’s a simple method to set up a custom Express server that catches all undefined routes and directs them back to the index while serving other static files without interference.

const express = require('express');
const next = require('next');

const port = parseInt(process.env.PORT, 10) || 3000;
const dev = process.env.NODE_ENV !== 'production';
const app = next({ dev });
const handle = app.getRequestHandler();

app.prepare().then(() => {
  const server = express();

  // Handle all other routes with next
  server.get('*', (req, res) => {
    return handle(req, res);
  });

  server.listen(port, (err) => {
    if (err) throw err;
    console.log("> Ready on http://localhost:" + port);
  });
});

Using next.config.js for Rewrites

You can also leverage the ‘next.config.js’ for redirecting traffic to the root ‘/’ route. Here’s a sample config file that ensures your Next.js app can handle page refreshes without showing a 404:

module.exports = {
  async rewrites() {
    return [
      {
        source: '/:path*',
        destination: '/',
      },
    ];
  },
};

Note that while this workaround can prevent 404 errors on reloads, it might interfere with API routes and dynamic routing if not properly managed. Make sure your API routes and dynamic paths are exempt from this rewriting rule or handled separately.

Static Export Considerations

For folks opting for static website generation with Next.js and encountering this issue, you might need to ensure all paths are exported properly during the ‘next export’. Dynamic routes not predefined could result in a 404 when accessed directly since the server has no HTML file associated with that path.

In conclusion, dealing with the ‘Blank Page or 404 on Refresh’ error in Next.js does not have a one-size-fits-all solution. You need to consider your deployment setup and choose the strategy that best aligns with your server configuration or hosting provider. Implementing custom server routing, adjusting your next.config.js, or ensuring proper static export can keep your Next.js app running smoothly even after a refresh.

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments