Skip to content

Commit

Permalink
fix(angular): correctly assign env var (nrwl#13549)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coly010 authored and mandarini committed Dec 1, 2022
1 parent 59a6a9e commit 5adc817
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion docs/generated/packages/storybook.json
Expand Up @@ -197,7 +197,6 @@
"bundler": {
"description": "The Storybook builder to use.",
"enum": ["vite", "webpack"],
"x-prompt": "Which Storybook builder do you want to use?",
"default": "webpack"
}
},
Expand Down
Expand Up @@ -97,7 +97,7 @@ export function executeModuleFederationDevSSRBuilder(
{ stdio: 'inherit' }
);
const child = fork(remoteServerOutput, {
env: remoteProject.targets['serve-ssr'].options.port,
env: { PORT: remoteProject.targets['serve-ssr'].options.port },
});
child.on('message', (msg) => {
if (msg === 'nx.server.ready') {
Expand Down
Expand Up @@ -68,7 +68,6 @@
"bundler": {
"description": "The Storybook builder to use.",
"enum": ["vite", "webpack"],
"x-prompt": "Which Storybook builder do you want to use?",
"default": "webpack"
}
},
Expand Down

0 comments on commit 5adc817

Please sign in to comment.