# `Combo.Inertia.SSR`
[🔗](https://github.com/combo-lab/combo_inertia/blob/v2.0.0/lib/combo/inertia/ssr.ex#L1)

The supervisor that provides SSR support for Inertia views.

This module is responsible for starting a pool of Node.js processes that
can run the SSR rendering function for your application.

# `child_spec`

Returns a specification to start this module under a supervisor.

See `Supervisor`.

# `start_link`

Starts the Node.js supervisor and workers for SSR.

## Options

- `:endpoint` - (required) the Combo endpoint.
- `:path` - (required) the path to the directory where the Node.js module file lives.
- `:module` - (optional) the name of the Node.js module file. Defaults to "ssr".
- `:pool_size` - (optional) the number of Node.js workers. Defaults to 4.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
