Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(angular): Module federation with Crystal enabled. #22224

Merged
merged 1 commit into from
Mar 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions packages/angular/src/utils/mf/with-module-federation-ssr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ import { getModuleFederationConfig } from './utils';
export async function withModuleFederationForSSR(
options: ModuleFederationConfig
) {
if (global.NX_GRAPH_CREATION) {
return (config) => config;
}
const { sharedLibraries, sharedDependencies, mappedRemotes } =
await getModuleFederationConfig(options, {
isServer: true,
Expand Down
3 changes: 3 additions & 0 deletions packages/angular/src/utils/mf/with-module-federation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ import { getModuleFederationConfig } from './utils';
import ModuleFederationPlugin = require('webpack/lib/container/ModuleFederationPlugin');

export async function withModuleFederation(options: ModuleFederationConfig) {
if (global.NX_GRAPH_CREATION) {
return (config) => config;
}
const { sharedLibraries, sharedDependencies, mappedRemotes } =
await getModuleFederationConfig(options);

Expand Down