UNPKG

@nx/remix

Version:

The Remix plugin for Nx contains executors and generators for managing Remix applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Vitest, Jest, Playwright, Cypress, and Storybook. - Generators for applica

43 lines (42 loc) 1.02 kB
{ "version": 2, "continuous": true, "outputCapture": "pipe", "cli": "nx", "title": "Remix Serve", "description": "Serve a Remix app.", "type": "object", "properties": { "port": { "type": "number", "description": "Set PORT environment variable that can be used to serve the Remix application.", "default": 4200 }, "devServerPort": { "type": "number", "description": "Port to start the dev server on." }, "debug": { "type": "boolean", "description": "Attach a Node.js inspector.", "default": false }, "command": { "type": "string", "description": "Command used to run your app server." }, "manual": { "type": "boolean", "description": "Enable manual mode", "default": false }, "tlsKey": { "type": "string", "description": "Path to TLS key (key.pem)." }, "tlsCert": { "type": "string", "description": "Path to TLS certificate (cert.pem)." } } }