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

# Delayed Initialization

> Delaying Overlayed's initialization.

Depending on how your app is created, you may want to delay Overlayed's initialization.

```ts theme={null}
import { overlayed } from "@overlayed/app";

const overlay = overlayed({
	init: false,
});

// whenever you're ready
overlay.init();
```
