5666b8f8e4
* chore: add custom export executor for next app * chore: update tsconfig path for export executor
20 lines
573 B
JSON
20 lines
573 B
JSON
{
|
|
"executors": {
|
|
"serve": {
|
|
"implementation": "./serve/impl",
|
|
"schema": "./serve/schema.json",
|
|
"description": "Starts a next server with an optional explicit environment."
|
|
},
|
|
"build": {
|
|
"implementation": "./build/impl",
|
|
"schema": "./build/schema.json",
|
|
"description": "Builds a next app with an optional explicit environment."
|
|
},
|
|
"export": {
|
|
"implementation": "./export/impl",
|
|
"schema": "./serve/schema.json",
|
|
"description": "Exports a next app with an optional explicit environment."
|
|
}
|
|
}
|
|
}
|