@nrwl/angular:file-server
Serves a static web application from a folder.
Options can be configured in project.json
when defining the executor, or when invoking it. Read more about how to configure targets and executors here: https://nx.dev/reference/project-configuration#targets.
Examples
Set up http-server
to host static files on a local webserver.
{
"static-serve": {
"executor": "@nrwl/angular:file-server",
"options": {
"buildTarget": "app:build",
"port": 4201
}
}
}