Skip to content

Commit

Permalink
fix(nuxt): correct webServerAddress and webServerCommand options in a…
Browse files Browse the repository at this point in the history
…dd-e2e.ts generator
  • Loading branch information
makp0 committed Jan 27, 2025
1 parent ed186fd commit c60430a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nuxt/src/generators/application/lib/add-e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,8 @@ export async function addE2e(host: Tree, options: NormalizedSchema) {
js: false,
linter: options.linter,
setParserOptionsProject: options.setParserOptionsProject,
webServerAddress: e2eWebServerInfo.e2eCiWebServerCommand,
webServerCommand: e2eWebServerInfo.e2eCiBaseUrl,
webServerAddress: e2eWebServerInfo.e2eCiBaseUrl,
webServerCommand: e2eWebServerInfo.e2eCiWebServerCommand,
addPlugin: true,
});

Expand Down

0 comments on commit c60430a

Please sign in to comment.