> For the complete documentation index, see [llms.txt](https://phoenixcoded.gitbook.io/saasable/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://phoenixcoded.gitbook.io/saasable/ui-kit/development/env-variables.md).

# Env Variables

Use a prefix `NEXT_PUBLIC_`

{% code title=".env" %}

```typescript
## Version
NEXT_PUBLIC_VERSION=v2.0.0

## Public URL
NEXT_PUBLIC_PATH=
NEXT_PUBLIC_BASE_NAME=

## SEO
NEXT_PUBLIC_METADATA_BASE=https://www.saasable.io

NEXT_PUBLIC_CLARITY_ID=

## Notify
NEXT_PUBLIC_NOTIFY_ID=

## Google Analytics
NEXT_PUBLIC_ANALYTICS_ID=

## Mailerlite
MAILERLITE_API_KEY=
MAILERLITE_API_ENDPOINT=https://connect.mailerlite.com/api
## Use commas to separate multiple groups (Notify all groups)
MAILERLITE_GROUP=
```

{% endcode %}

For more, check here: <https://nextjs.org/docs/api-reference/next.config.js/environment-variables>&#x20;
