I am having an issue with deploying my app on render when I try to make my deployment I am met with this error
and I don’t know how to work my way around it
{
“name”: “food_order_backend”,
“version”: “1.0.0”,
“main”: “index.js”,
“scripts”: {
“start”: “node ./dist/index.js”,
“build”: “tsc -p .”,
“postinstall”: “npm run build”
},
my start is at node./dist/index.js but the file structure is not being seen
machiavelli@oghenes-Air Food_Order_Backend % npm run build && ls dist
food_order_backend@1.0.0 build
tsc -p .
config dto index.js.map models services
controller index.js middlewares routes utility
using this command to check the logs of my file structure how do I move forward
my github link : GitHub - machiavellai/Order-Backend