@nx/remix:resource-route
Generate a resource route.
Generate a resource route.
1nx generate resource-route ...
2By default, Nx will search for resource-route in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
1nx g @nx/remix:resource-route ...
2Show what will be generated without writing to disk:
1nx g resource-route ... --dry-run
2Generate a resource route at myapp/app/routes/foo.ts:
1nx g resource-route myapp/app/routes/foo.ts
2Generate a resource route without providing the file extension at myapp/app/routes/foo.tsx:
1nx g resource-route myapp/app/routes/foo
2The file path to the route. Relative to the current working directory.
falseGenerate an action function
trueGenerate a loader function
falseSkip route error detection