Based on the information provided in the Edgio documentation, it seems that the build deployment failed when trying to deploy a Next.js application using the Edgio CLI. The error screenshot and details are not visible in the context, but I can provide some general troubleshooting steps that might help resolve common deployment issues:
Check Node.js and Next.js Versions: Ensure that the versions of Node.js and Next.js you are using are compatible with the Edgio platform. According to the documentation, Edgio supports Next.js versions 9.x to 13.x with Node.js version 16.x, and Next.js version 14.x with Node.js versions 18.x and 20.x. Since you are using Node.js v18.17.0, it should be compatible with your Next.js version 14.2.18.
Edgio CLI Version: Verify that you are using the latest version of the Edgio CLI. You can update the Edgio CLI to the latest version using npm i -g @edgio/cli@latest.
Check edgio.config.js: Ensure that the edgio.config.js file is properly configured. This file contains various configuration options for Edgio, and any misconfiguration could lead to deployment issues.
Review Application Code: Sometimes, the issue might be with the application code itself. Check for any syntax errors, missing dependencies, or other issues that could prevent the build from succeeding.
Edgio Documentation: Refer to the Edgio documentation for any specific instructions or requirements for deploying Next.js applications. There might be additional steps or configurations needed that are outlined in the documentation.
Edgio Support: If the issue persists, consider reaching out to Edgio support for assistance. They may be able to provide more specific guidance based on the error message and logs.
Since the error details are not provided, these are general suggestions. For more accurate troubleshooting, you would need to refer to the error message and logs generated during the deployment process.