Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BUGFIX: Prevent webpack from bundling
react-ui-components
twice
Some modules referred to the components via ```js import { /* ... */ } from '@neos-project/react-ui-components'; ``` This caused webpack to pull the components from '@neos-project/react-ui-components/lib-esm' rather than '@neos-project/react-ui-components/src', leading to the component modules being bundled twice. The solution was to add an alias for '@neos-project/react-ui-components' to the root webpack config, so that the components are always pulled from 'src/' at build-time.
- Loading branch information