# File provisioning

Mosaic introduces concept of "file provisioning". **This is a feature of**[ **extensions**](broken://pages/-MXlBPS6g2vhjkTrAhpH).

{% hint style="info" %}
**To provide a file** - means to add a file into the "override" tool-chain with a lowest priority. This would make it discoverable by compiler, while any theme will be able to easily override it.
{% endhint %}

This is commonly used by extensions which replace the web application's entry point. It makes it possible to compile an application using some other HTML entry-point without manually defining it in a theme.

To provide a file in some mosaic extension, set the `mosaic.provide` field of its `package.json` equal to an array, and populate it with desired path to provision.

{% code title="package.json" %}

```javascript
{
    "mosaic": {
        "provide": ["public/index.html"]
    }
}
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mosaic.js.org/experimental/provide.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
