Home > front end >  New Strapi Application won’t run
New Strapi Application won’t run

Time:03-01

I’m just new to Strapi and I followed the steps in the Strapi Documentation in creating a new project with Strapi and started with this npx create-strapi-app@latest my-project --quickstart

After creation, it opened the localhost page on my browser and it showed an This page isn’t working If the problem continues, contact the site owner. HTTP ERROR 426 error

enter image description here

This is what my terminal looks like: enter image description here

Thanks so much!

CodePudding user response:

Some of the solutions you could

  1. try killing port on 1337 and run yarn develop
  2. change the port number on ./config/server.js to another port like 1331 and run

It is most likely because the port is already in use

  • Related