fix: trailing slash in env definition

This commit is contained in:
Nemesis 2023-02-02 00:27:38 +01:00
parent c9b2afcdb6
commit 72d642ed13
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ import { str, envsafe, url } from 'envsafe';
export const env = envsafe({
STRAPI_BASE_API_URL: url({
devDefault: 'http://127.0.01:1337/api/',
devDefault: 'http://127.0.01:1337/api',
}),
STRAPI_API_TOKEN: str(),
});