为什么在运行main.js时Nest.js抛出错误?

时间:2019-09-15 14:15:01

标签: nestjs

我正在使用Nest.js开发Web后端。

当我使用npm run build时,cmd显示成功。 enter image description here

但是当我使用node dist/main.js时,cmd显示错误。但是我确定该文件存在并且处于开发模式(npm run start),一切正常。

enter image description here

这是github地址。 https://github.com/Eve-1995/Oreo/tree/master/oreo-back-end

下一步我该怎么做?

2 个答案:

答案 0 :(得分:2)

我认为原因是在TypeOrm配置中。

v-html

答案 1 :(得分:2)

entities: [__dirname + '/../**/**/!(*.d).entity.{ts,js}'],在生产环境和开发环境中都为我做花招。