We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 497a957 commit f1d0a41Copy full SHA for f1d0a41
1 file changed
packages/react-router-dev/restart-with-conditions.ts
@@ -8,7 +8,7 @@ import process from "node:process";
8
export function restartWithMergedOptions(nodeOptions: string): void {
9
if (process.env.REACT_ROUTER_DEV_RESTARTED === "true") {
10
throw new Error(
11
- "restartWithMergedOptions() was called, but the process has already been restarted. This is likely a bug in @react-router/dev."
+ "restartWithMergedOptions() was called, but the process has already been restarted. This is likely a bug in @react-router/dev.",
12
);
13
}
14
const mergedOptions = [process.env.NODE_OPTIONS, nodeOptions]
0 commit comments