---
title: "How to Deploy Your Angular App | Hostman Docs"
description: "Deploy your Angular app on Hostman with this guide. Step-by-step instructions for easy Angular deployment, setup, and configuration."
---

> For the complete documentation index for AI agents, see [llms.txt](https://hostman.com/llms.txt).

You can find the step-by-step deployment guide [here](https://hostman.com/docs/app-platform/frontend-apps/).

> [!NOTE]
> For Angular versions **16 and below**, the default build output path does **not** include the `browser/` directory. Make sure to remove `browser/` from the build path when configuring the deployment.

When deploying an Angular project, the build environment runs the following commands by default:

```shell
DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y --no-install-recommends \
  curl \
  {% if system_dependencies %}{{ system_dependencies | join(' ') }}{% endif %} \
  && rm -rf /var/lib/apt/lists/*

npm install -g @angular/cli@latest
```

Here, `system_dependencies` refers to the system packages configured in the dashboard.

After that, project dependencies are installed using the package manager detected in the repository (`yarn`, `pnpm`, or `npm`):

```shell
yarn install
pnpm install
npm install
```
