# FAQ

* [When I Try to Compile Angular with AoT I Get an Error](/redux-beacon/faq.md#when-i-try-to-compile-angular-with-aot-i-get-an-error)

## When I Try to Compile Angular with AoT I Get an Error

```
ERROR in Error encountered resolving symbol values statically. Calling function 'createMetaReducer', function calls are not supported. Consider replacing the function or lambda with a reference to an exported function, resolving symbol analyticsMetaReducer in ...
```

The solution is to wrap the exported meta reducer in another meta reducer that is defined as a function declaration.

```typescript
const targetMetaReducer = createMetaReducer(eventsMap, MyTarget());

export function analyticsMetaReducer(reducer) {
  return targetMetaReducer(reducer);
}
```

### Relevant Discussions

* [#127](https://github.com/rangle/redux-beacon/issues/127)
* [rangle/redux-gtm#39](https://github.com/rangle/redux-gtm/issues/39)


---

# 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://rangle.gitbook.io/redux-beacon/faq.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.
