> For the complete documentation index, see [llms.txt](https://docs.facephi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.facephi.com/docs.facephi-en/sdks/sdk-web/componentes/sdk-provider/propiedades/resourcespath.md).

# resourcesPath

## Details

**Attribute:** `resources-path`

**Type:** `string`

**Default value:** `undefined`

## Morphology

```typescript
provider.resourcesPath = '/assets/sdk';
```

## Description

Base path from which `facephi-sdk-provider` and child wrappers (`facephi-selphi-widget`, `facephi-selphid-widget`, etc.) resolve static resources and engines when `engineLocation` in each Widget.

### Considerations

The path must be **absolute** or **relative to the origin** of the application (e.g. `/assets/sdk`). Relative paths with notation are not allowed `./` or `../`.

***

## Example

```jsx
<facephi-sdk-provider
    apikey={process.env.FACEPHI_SDK_APIKEY}
    resourcesPath={'/assets/sdk'}
/>
```
