---
title: "IIS"
description: "Deploy your Nuxt Application to IIS infrastructure."
canonical_url: https://nuxt.com/deploy/iis
last_updated: 2026-04-15
---

# IIS

> Deploy your Nuxt Application to IIS infrastructure.

## Using IISnode

1. Install the latest LTS version of [Node.js](https://nodejs.org/en/) on your Windows Server.
2. Install [IISnode](https://github.com/azure/iisnode/releases)
3. Install [IIS `URLRewrite` Module](https://www.iis.net/downloads/microsoft/url-rewrite).
4. In IIS, add `.mjs` as a new mime type and set its content type to `application/javascript`.
5. Build you application with the following command:
```bash [Terminal]
npx nuxi build --preset=iis_node
```
6. Deploy the contents of your `.output` folder to your website in IIS.

## More options

<read-more target="_blank" to="https://nitro.unjs.io/deploy/providers/iis">

Head over **Nitro documentation** to learn more about the IIS deployment presets.

</read-more>
