5666b8f8e4
* chore: add custom export executor for next app * chore: update tsconfig path for export executor
19 lines
611 B
JSON
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"]
|
|
}
|