Newer
Older
taehui / turbo.json
@Taehui Taehui on 17 Mar 346 bytes 2024-03-17 오후 5:05
{
  "$schema": "https://turbo.build/schema.json",
  "pipeline": {
    "dev": {
      "dependsOn": [
        "build:taehui-ts"
      ]
    },
    "build": {
      "dependsOn": [
        "^build"
      ],
      "outputs": [
        ".next/**"
      ]
    },
    "start": {
      "dependsOn": [
        "build"
      ]
    },
    "deploy": {}
  }
}