VampireAchao commented on issue #4531:
URL: https://github.com/apache/shenyu/issues/4531#issuecomment-1532895019
你可以通过`shenyu-dashboard/src/index.ejs`来设置
例如`src/index.ejs:30`
```ejs
<div id="httpPath" style="display: none"
th:text="<%='$'%>{domain}">${process.env.NODE_ENV === 'production' ? '' :
'http://localhost:9095'}</div>
```
可以修改为
```ejs
<div id="httpPath" style="display: none"
th:text="<%='$'%>{domain}">${process.env.NODE_ENV === 'production' ?
'/shenyuadmin' : 'http://localhost:9095/shenyuadmin'}</div>
```
即可实现
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]