> ## Documentation Index
> Fetch the complete documentation index at: https://docs.assistantscenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Don't Create Server

> Do not create and don't listen an express http/-s server for Dashboard.

```js theme={null}
new DBD.Dashboard({
  noCreateServer: Boolean,
});
```

## Example Usage

```javascript theme={null}
new DBD.Dashboard({
  noCreateServer: true,
});
```

## Props

<ParamField path="noCreateServer" type="boolean" required>
  Whether or not to create and listen an express http/-s server for Dashboard.
</ParamField>
