This commit is contained in:
split / May 2024-07-11 03:39:21 -07:00
parent 454eabfc78
commit 9d9d041902
Signed by: split
GPG key ID: C325C61F0BF517C0
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "ava", "name": "ava",
"version": "1.1.0", "version": "1.1.1",
"private": true, "private": true,
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",

View file

@ -15,6 +15,6 @@ const configuration = {
route: process.env.USERINFO__ROUTE!, route: process.env.USERINFO__ROUTE!,
identifier: process.env.USERINFO__IDENTIFIER! identifier: process.env.USERINFO__IDENTIFIER!
}, },
allowed_types: process.env.ALLOWED_TYPES!.split(",") allowed_types: process.env.ALLOWED_TYPES?.split(",") || []
} }
export default configuration export default configuration