1

我尝试了下面的脚本,但没有奏效。

{
  "scripts": {
    "start": "TZ='UTC' nest start"
  }
}

[系统信息]
OS 版本:Linux 5.4
NodeJS 版本:v12.18.3
NPM 版本:6.14.6

[Nest CLI]
Nest CLI 版本:7.4.1

【Nest平台信息】
platform-express版本:7.0.0
passport版本:7.0.0
typeorm版本:7.1.0
common版本:7.0.0
config版本:0.5.0
core版本:7.0.0
jwt版本:7.0.0

4

1 回答 1

2

在 REPL 中,这是按预期工作的。

TZ=UTC node
> d = new Date()
> d.toLocaleTimeString()

我假设您需要将启动命令设置为

  "start": "TZ=UTC nest start"
于 2020-08-28T15:49:53.583 回答