{
  "build": {
    "dependsOn": [
     {
        "target": "copy-translations-to-app"
     },
     {
        "target": "copy-assets-to-app"
      },
      {
        "target": "build",
        "dependencies": true
      }
    ],
    "executor": "@nx/next:build",
    "outputs": ["{options.outputPath}"],
    "options": {
      "outputPath": "dist/<%= projectPath %>"
    },
    "configurations": {
      "production": {}
    }
  },
  "serve-base": {
    "dependsOn": [
       {
          "target": "copy-translations-to-app"
       },
       {
          "target": "copy-assets-to-app"
        }
    ],
    "executor": "@nx/next:server",
    "options": {
      "buildTarget": "<%= projectName %>:build",
      "dev": true
    },
    "configurations": {
      "production": {
        "buildTarget": "<%= projectName %>:build:production",
        "dev": false
      }
    }
  },
  "serve": {
    "executor": "@brainly-gene/tools:secure-serve",
    "options": {
      "serveTarget": "<%= projectName %>:serve-base"
    },
    "dependsOn": [
     {
        "target": "copy-translations-to-app"
     },
     {
        "target": "copy-assets-to-app"
      },
      {
        "target": "build",
        "dependencies": true
      }
    ],
    "configurations": {
      "production": {
        "serveTarget": "<%= projectName %>:serve-base:production"
      }
    }
  },
  "copy-translations-to-app": {
    "executor": "@brainly-gene/tools:copy-translations-to-app"
  },
  "copy-assets-to-app": {
    "executor": "@brainly-gene/tools:copy-assets-to-app"
  }
}
