UNPKG

@nx/next

Version:

The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides: - Scaffolding for creating, building, serving, linting, and testing Next.js applications. - Integration wit

31 lines (30 loc) 842 B
{ "$schema": "https://json-schema.org/schema", "cli": "nx", "$id": "NxNextCustomServer", "title": "Add custom server", "description": "Add a custom server to existing Next.js application.", "type": "object", "properties": { "project": { "type": "string", "description": "The name of the project.", "alias": "p", "$default": { "$source": "argv", "index": 0 }, "x-dropdown": "project", "x-prompt": "What is the name of the project to set up a custom server for?", "x-priority": "important" }, "compiler": { "type": "string", "enum": ["tsc", "swc"], "default": "tsc", "description": "The compiler used to build the custom server." } }, "required": ["project"], "examplesFile": "../../../docs/custom-server-examples.md" }