tsc). Supports deployment adapters for platform-specific output.
Usage
Configuration
project.json
Options
Caching
This executor is cacheable. Nx will skip the build if inputs haven’t changed.nx.json
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Compile a FrontMCP project using frontmcp build
tsc). Supports deployment adapters for platform-specific output.
nx build my-app
{
"targets": {
"build": {
"executor": "@frontmcp/nx:build",
"outputs": ["{projectRoot}/dist"],
"options": {
"entry": "{projectRoot}/src/main.ts",
"outputPath": "{projectRoot}/dist"
}
}
}
}
| Option | Type | Description |
|---|---|---|
entry | string | Entry file path |
outputPath | string | Output directory path |
adapter | node | vercel | lambda | cloudflare | Deployment adapter |
{
"targetDefaults": {
"build": {
"cache": true,
"dependsOn": ["^build"],
"inputs": ["production", "^production"]
}
}
}