fix:try to fix the docker build of front-end (#487)
This commit is contained in:
parent
b02ce90057
commit
fca0ae8fcb
|
|
@ -101,15 +101,15 @@ export const getChatStreamSettings = () => {
|
|||
name: cur.name,
|
||||
transport,
|
||||
env,
|
||||
command: cur.command,
|
||||
args: cur.args,
|
||||
command: (cur as any).command,
|
||||
args: (cur as any).args,
|
||||
};
|
||||
} else {
|
||||
server = {
|
||||
name: cur.name,
|
||||
transport,
|
||||
env,
|
||||
url: cur.url,
|
||||
url: (cur as any).url,
|
||||
};
|
||||
}
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in New Issue