Skip to content

Commit

Permalink
fix(cli): regex match against settings
Browse files Browse the repository at this point in the history
  • Loading branch information
eikeland committed Nov 15, 2024
1 parent c86ff99 commit 7b581d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/lib/plugins/app-proxy/app-proxy-plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const appProxyPlugin = (options: AppProxyPluginOptions): Plugin => {
// serve app manifest if request matches the current app
const manifestPath = join(proxyPath, app.manifestPath ?? `apps/${app.key}`);
server.middlewares.use(manifestPath, async (_req, res, next) => {
if (_req.url?.match(/settings$/)) {
if (_req.url?.match(/^\/settings$/)) {
next();
return;
}
Expand Down

0 comments on commit 7b581d0

Please sign in to comment.