Skip to content

Commit 98267c7

Browse files
authored
Proper casing of module, federation, and Mockup
1 parent 51842fd commit 98267c7

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

docs/classic-ui/module-federation.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
---
22
html_meta:
3-
"description": "How to use Module Federation in Mockup and add-on bundles."
4-
"property=og:description": "How to use Module Federation in Mockup and add-on bundles."
5-
"property=og:title": "Module Federation in Mockup"
6-
"keywords": "Plone, Classic UI, classic-ui, Mockup, mockup, module federation, webpack, JavaScript"
3+
"description": "How to use module federation in Mockup and add-on bundles."
4+
"property=og:description": "How to use module federation in Mockup and add-on bundles."
5+
"property=og:title": "Module federation in Mockup"
6+
"keywords": "Plone, Classic UI, classic-ui, Mockup, module federation, webpack, JavaScript"
77
---
88

99
(classic-ui-module-federation-in-mockup-label)=
1010

1111
# Module federation in Mockup
1212

13-
Module Federation allows sharing of dependencies between bundles.
13+
Module federation allows sharing of dependencies between bundles.
1414
Each bundle includes the whole set of dependencies.
1515
However, if multiple bundles have the same dependencies, then they are loaded only once.
1616

1717
For example, if bundle A and B both depend on jQuery and bundle A has already loaded it, then bundle B can just reuse the already loaded jQuery file.
1818
But if only bundle B is loaded, it uses its own bundled version of the jQuery library.
1919

2020
There is a host bundle, as in the fictional example above, our bundle A.
21-
In Plone the host bundle is the main mockup bundle.
21+
In Plone the host bundle is the main Mockup bundle.
2222
Add-ons can add bundles called "remotes" which are initialized for module federation by the host bundle.
2323

2424
```{seealso}
25-
Webpack's documentation on [Module Federation](https://webpack.js.org/concepts/module-federation/).
25+
Webpack's documentation on [module federation](https://webpack.js.org/concepts/module-federation/).
2626
```
2727

2828

0 commit comments

Comments
 (0)