# Browser support

The approach adopted by Frontity is as follows:

* Prioritize the performance and user experience for the large majority of users that run modern browsers.
* Do this while keeping as much compatibility as possible for the small minority of users that still use older browsers, such as IE11.

> *"as much compatibility as possible" here means that at the very least the page loads, the content can be viewed and read, and the user can navigate to other parts of the site.*

| Platform                                               | Support                 |
| ------------------------------------------------------ | ----------------------- |
| [Browsers with Proxy](https://caniuse.com/#feat=proxy) | Full hydration          |
| Browsers without Proxy (like IE11)                     | No hydration (SSR-only) |

We don’t expect feature parity between the SSR-only version and the fully hydrated version. You can think of the SSR-only version as an alternative version of your page, without the enhanced experience provided by React.

{% hint style="warning" %}
If you need to provide the feature parity in IE11, then Frontity is probably not the best option for you.
{% endhint %}


---

# 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://gitbook-docs.frontity.org/about/browser-support.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.
