vega-frontend-monorepo/tools/executors/next/export/schema.json
Matthew Russell 5666b8f8e4
chore: add custom export executor for next app (#1999)
* chore: add custom export executor for next app

* chore: update tsconfig path for export executor
2022-11-08 18:59:49 -08:00

19 lines
611 B
JSON

{
"cli": "nx",
"id": "export",
"description": "Exports a next app app using @nrwl/next:export with an optional explicit environment",
"type": "object",
"properties": {
"env": {
"type": "string",
"description": "Target environment to run the application in. This assumes an .env file present in the project's root in the following format: .env.{envName}"
},
"buildLibsFromSource": {
"type": "boolean",
"description": "Read buildable libraries from source instead of building them separately.",
"default": true
}
},
"required": ["root", "outputPath"]
}