> For the complete documentation index, see [llms.txt](https://leaf.js.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://leaf.js.org/faq.md).

# FAQ

Page of frequently asked questions

## 1. Is the software can be use in production?

You can but our server software doesn't have stable version yet. **Server under active development.**

## 2. Why i can't host the server locally?

This issue occurs due to loopback restrictions on Windows 10 UWP apps. To lift this restriction, launch Windows PowerShell as an administrator and run the following:

```powershell
CheckNetIsolation LoopbackExempt -a -n="Microsoft.MinecraftUWP_8wekyb3d8bbwe"

# If it doesn't work. You probably use beta version yet.€
CheckNetIsolation LoopbackExempt -a -n="Microsoft.MinecraftWindowsBeta"

# If that still doesn't work, you can inspect what Minecraft versions are available on your system with:
Get-AppxPackage -AllUsers | Where Name -Match ".*Minecraft.*" | Select Name,InstallLocation,PackageFullName
```
