Skip to content
Discussion options

You must be logged in to vote

Hey @GronsoBitburg — I think this sounds like it has to do with your local environment rather than Payload. it seems like you are not able to connect to localhost:3000.

What I'd do is try and start a simple Express server listening on port 3000 and then try and load it in your browser to see if you can access it.

Create a new directory and put the following two files in it:

package.json

{
  "name": "express-app",
  "version": "1.0.0",
  "description": "",
  "main": "server.js",
  "scripts": {
    "start": "node server.js"
  },
  "author": "",
  "license": "ISC",
  "dependencies": {
    "express": "^4.18.1"
  }
}

server.js

const express = require('express');

const expressApp = express();

e…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@GronsoBitburg
Comment options

@jmikrut
Comment options

@GronsoBitburg
Comment options

Answer selected by GronsoBitburg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants