> For the complete documentation index, see [llms.txt](https://docs.valtimo.nl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.valtimo.nl/v12/nog-een-plek-geven/reference/environment.md).

# Environment

Many aspects of the Valtimo front-end can be configured through Angular environment files. Please refer to the following non-exhaustive list of configuration options, which refer to keys under the interface `ValtimoConfig`.

* **`formioOptions`**

  The Form.io renderer uses an options object of the type `FormioOptions`. Valtimo provides some defaults (such as language). To override these options with your own, use this key in your environment file. Find an example below of a possible configuration:

```typescript
formioOptions: {
    languageOverride: {
      'en-US': {
        decimalSeparator: ':',
        delimiter: ':',
      },
    },
  },
```
