@nrwl/web:file-server

Serve a 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/configuration/projectjson#targets.

Options playground

This is an example of what the properties looks like and their values. Go ahead and try, test your configuration this is a live-edit window, you can interact directly and get intellisense on property's values.

Loading...

Options

buildTarget

Required
string

Target which builds the application.

host

string
Default: localhost

Host to listen on.

maxParallel

number

Max number of parallel jobs.

parallel

boolean
Default: true

Build the target in parallel.

port

number
Default: 4200

Port to listen on.

proxyUrl

string

URL to proxy unhandled requests to.

proxyOptions

Default: [object Object]

Options for the proxy used by http-server.

ssl

boolean
Default: false

Serve using HTTPS.

sslKey

string

SSL key to use for serving HTTPS.

sslCert

string

SSL certificate to use for serving HTTPS.

withDeps

Deprecated
boolean
Default: false

Build the target and all its deps

"withDeps" is deprecated and it will be removed in v14. Configure target dependencies instead: https://nx.dev/configuration/projectjson.