This site can’t provide a secure connection

System Information
  • Strapi Version: 4
  • Operating System: Mac
  • Database: Started with --quickstart so default db
  • Node Version: 16.17.0
  • NPM Version: 8.15.0
  • Yarn Version: 1.22.19

After running “yarn develop” to start server on localhost. I get below error.

This site can’t provide a secure connection

Here is the Google Dev Tools “Network” Tab.

Any help solving this issue?

Here is the server.js file.

module.exports = ({ env }) => ({
  host: env('HOST', '0.0.0.0'),
  port: env.int('PORT', 8000),
  app: {
    keys: env.array('APP_KEYS'),
  },
});

Have you managed to fix it ?