mirror of
https://github.com/whyour/qinglong.git
synced 2026-01-27 02:17:59 +08:00
Fix env.js loading error by preventing catch-all from matching API routes
Co-authored-by: whyour <22700758+whyour@users.noreply.github.com>
This commit is contained in:
parent
f73059ec71
commit
4926f6f625
|
|
@ -123,7 +123,11 @@ export default ({ app }: { app: Application }) => {
|
|||
app.use(rewrite('/open/*', '/api/$1'));
|
||||
app.use(config.api.prefix, routes());
|
||||
|
||||
app.get('*', (_, res, next) => {
|
||||
app.get('*', (req, res, next) => {
|
||||
// Don't serve index.html for API routes
|
||||
if (req.path.startsWith('/api/')) {
|
||||
return next();
|
||||
}
|
||||
const indexPath = path.join(frontendPath, 'index.html');
|
||||
res.sendFile(indexPath, (err) => {
|
||||
if (err) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user