Skip to content

Commit

Permalink
fix(react): fix imports in tmpl (#14369)
Browse files Browse the repository at this point in the history
  • Loading branch information
timfisher committed Jan 20, 2023
1 parent 059eff8 commit 1c3ebfc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { composePlugins, withNx } = require('@nrwl/webpack');
const { withReact } = require('@nrwl/react');
const { withModuleFederation } = require('@nrwl/react/module-federation'));
const { withModuleFederation } = require('@nrwl/react/module-federation');

const baseConfig = require('./module-federation.config');

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { composePlugins, withNx } = require('@nrwl/webpack');
const { withReact } = require('@nrwl/react');
const { withModuleFederation } = require('@nrwl/react/module-federation'));
const { withModuleFederation } = require('@nrwl/react/module-federation');

const baseConfig = require('./module-federation.config');

Expand Down

0 comments on commit 1c3ebfc

Please sign in to comment.