@nx/remix:resource-route
Generate a resource route.
Generate a resource route.
1nx generate resource-route ...
2
By 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 ...
2
Show what will be generated without writing to disk:
1nx g resource-route ... --dry-run
2
Generate a resource route at myapp/app/routes/foo.ts
:
1nx g resource-route myapp/app/routes/foo.ts
2
Generate a resource route without providing the file extension at myapp/app/routes/foo.tsx
:
1nx g resource-route myapp/app/routes/foo
2
The file path to the route. Relative to the current working directory.
false
Generate an action function
true
Generate a loader function
false
Skip route error detection