Skip to content

Commit 52b0007

Browse files
authored
fix: debugger-ui incorrect path (#226)
Summary: --------- Missed this one while moving files around in #201. Fixes #225 Test Plan: ---------- Verified locally on a clean project.
1 parent 2057a9b commit 52b0007

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/cli/src/commands/server/middleware/MiddlewareManager.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default class MiddlewareManager {
4242
options: Options;
4343

4444
constructor(options: Options) {
45-
const debuggerUIFolder = path.join(__dirname, '..', 'util', 'debugger-ui');
45+
const debuggerUIFolder = path.join(__dirname, '..', 'debugger-ui');
4646

4747
this.options = options;
4848
this.app = connect()

0 commit comments

Comments
 (0)