Skip to content

Commit

Permalink
rebase changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jstafman authored and MichaelDeBoey committed Mar 9, 2023
1 parent cb0b955 commit 1704f35
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/remix-dev/cli/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ async function dev(
appServerPort?: number;
}
) {
console.log("-----DEV FUNCTION------");
if (!process.env.NODE_ENV) process.env.NODE_ENV = "development";

if (flags.debug) {
Expand All @@ -158,7 +159,10 @@ async function dev(
inspector.open();
}
}
await commands.dev(projectDir, process.env.NODE_ENV, flags);
await commands.dev(projectDir, process.env.NODE_ENV, {
port: flags.port,
appServerPort: flags.appServerPort,
});
}

/**
Expand Down

0 comments on commit 1704f35

Please sign in to comment.