📜  DOTENV_CONFIG_PATH - 任何代码示例

📅  最后修改于: 2022-03-11 15:00:06.159000             🧑  作者: Mango

代码示例1
"scripts": {
    "lint": "tslint --project tsconfig.json",
    "build": "tsc",
    "prestart": "npm run build",
    "prestart:dev": "npm run build",
    "prestart:test": "npm run build",
    "start": "node -r dotenv/config . dotenv_config_path=./.env",
    "start:dev": "node -r dotenv/config . dotenv_config_path=./.env.dev",
    "start:test": "node -r dotenv/config . dotenv_config_path=./.env.test",
    "test": "echo \"Error: no test specified\" && exit 1"
  },