Skip to content

Commit

Permalink
feat(angular): add example remote override to prod mfe (#9703)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coly010 committed Apr 6, 2022
1 parent cf54cc9 commit f4403e2
Showing 1 changed file with 15 additions and 1 deletion.
@@ -1 +1,15 @@
module.exports = require('./webpack.config');
const { withModuleFederation } = require('@nrwl/angular/module-federation');
const config = require('./mfe.config');
module.exports = withModuleFederation({
...config,
/*
* Remote overrides for production.
* Each entry is a pair of an unique name and the URL where it is deployed.
*
* e.g.
* remotes: [
* ['app1', 'https://app1.example.com'],
* ['app2', 'https://app2.example.com'],
* ]
*/
});

0 comments on commit f4403e2

Please sign in to comment.