core
core copied to clipboard
Module Federation is a concept that allows developers to share code and resources across multiple JavaScript applications
## Description Allow timeout to be set on create script Script timeout is OS based and on windows, it can take several seconds before errorLoadRemote hook can be triggered as...
### Describe the bug tools used: Rsbuils, React, typescript, pnpm refered react-manifest-example example. registerRemotes( [ { name: "app1", entry: `http://localhost:3002/mf-manifest.json?v=${version}`, }, ], { force: true } ); **When updating registered...
### Clear and concise description of the problem Currently, setting the `publicPath` is forced in development, IMO it is redundant and unnecessary. If we know a URL, we can infer...
### Describe the bug This is a comparison between rsbuild and webpack terminal prints in development: rspack:  config: ```ts // rsbuild.config.ts import { defineConfig...
### Clear and concise description of the problem Usually, we will set the provider name as `@scope/name`, format with scoped package names ( like `@company/project-name` ): ```ts config.plugin('ModuleFederationPlugin').use(ModuleFederationPlugin, [ {...
## Description ## Related Issue ## Types of changes - [x] Docs change / refactoring / dependency upgrade - [ ] Bug fix (non-breaking change which fixes an issue) -...
### Clear and concise description of the problem When I forget to change project entrypoint file to async loading , I only get the following error: ![CleanShot 2024-05-04 at 11 ...
## Description Updating translations and links. ## Related Issue General grammar fixes and adding Zephyr Cloud. Would be great if someone can fix the styling to add padding on left...
## Description Implementation of container factory for at runtime container creation ```js import {createContainer} from '@module-federation/webpack-bundler-runtime' const createdContainer = createContainer({ name: '@myRemote', exposes: { './remote': ()=> import('./remote'), }, remotes: [...
### Describe the bug Hi team. First off, amazing work on this new version of module federation. I am trying to upgrade to 2.0 and added these two packages to...