hi, i want to deloy the backend to heroku but when i try to run the command
NODE_ENV=production npm start
this error show up:
> my-project@0.0.0 start /Users/tanhuynh/dev/getex
> node server.js
internal/modules/cjs/loader.js:883
throw err;
^
Error: Cannot find module 'strapi'
Require stack:
- /Users/tanhuynh/dev/getex/server.js
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:880:15)
at Function.Module._load (internal/modules/cjs/loader.js:725:27)
at Module.require (internal/modules/cjs/loader.js:952:19)
at require (internal/modules/cjs/helpers.js:88:18)
at Object.<anonymous> (/Users/tanhuynh/dev/getex/server.js:1:16)
at Module._compile (internal/modules/cjs/loader.js:1063:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
at Module.load (internal/modules/cjs/loader.js:928:32)
at Function.Module._load (internal/modules/cjs/loader.js:769:14)
at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:72:12) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/Users/tanhuynh/dev/getex/server.js' ]
}
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! my-project@0.0.0 start: `node server.js`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the my-project@0.0.0 start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/tanhuynh/.npm/_logs/2021-06-08T05_36_22_060Z-debug.log
can anyone explain to me why? Thank you