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 0f3df35 commit 8a83a96Copy full SHA for 8a83a96
packages/devextreme-cli/testing/dev-server.js
@@ -11,10 +11,10 @@ module.exports = class DevServer {
11
return this.env.engine.indexOf('nextjs') === 0;
12
}
13
14
- constructor(env) {
+ constructor(env, { port }) {
15
this.env = env;
16
this.server = this.isNextJs()
17
- ? new NextJsServer(this.env)
+ ? new NextJsServer(this.env, { port })
18
: new WebServer();
19
20
0 commit comments