You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//create new app instance with the next helper by passing configuration object to it (whether we are running our server in production or development mode)
const app = next({
dev: process.env.NODE_ENV !== 'production'
});
const routes = require('./routes');
//get handler by passing app object to getRequestHandler in the routes
const handler = routes.getRequestHandler(app);
//set up the app and tell it to listen to specific port