Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dherault committed Aug 30, 2024
1 parent ff8ec5d commit 993e06e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/config/commandOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@ export default {
usage:
"Adds a prefix to every path, to send your requests to http://localhost:3000/prefix/[your_path] instead.",
},
preLoadModules: {
type: "string",
usage: "A comma separated list of modules to preload on the main thread",
},
reloadHandler: {
type: "boolean",
usage: "Reloads handler with each request.",
Expand Down Expand Up @@ -139,8 +143,4 @@ export default {
type: "string",
usage: "Websocket port to listen on. Default: 3001.",
},
preLoadModules: {
type: "string",
usage: "A comma separated list of modules to preload on the main thread",
},
}
2 changes: 1 addition & 1 deletion src/config/defaultOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default {
noPrependStageInUrl: false,
noTimeout: false,
prefix: "",
preLoadModules: "",
reloadHandler: false,
resourceRoutes: false,
terminateIdleLambdaTime: 60,
Expand All @@ -28,5 +29,4 @@ export default {
webSocketHardTimeout: 7200,
webSocketIdleTimeout: 600,
websocketPort: 3001,
preLoadModules: '',
}

0 comments on commit 993e06e

Please sign in to comment.