> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cdp.coinbase.com/llms.txt
> Use this file to discover all available pages before exploring further.

# getProjectConfig

```ts theme={null}
function getProjectConfig(): Promise<ProjectConfig>;
```

Gets the project configuration for the current project.

## Returns

`Promise`\<`ProjectConfig`>

The project configuration.

## Example

```typescript lines theme={null}
const result = await getProjectConfig();
console.log("Project name:", result.name);
```
