Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[material-ui] Minimizing bundle using 'babel-plugin-import' results in 'Cant Resolve...' errors #42326

Closed
RonSmithRX opened this issue May 22, 2024 · 3 comments
Labels
package: material-ui Specific to @mui/material

Comments

@RonSmithRX
Copy link

RonSmithRX commented May 22, 2024

Steps to reproduce

Link to live example: https://codesandbox.io/p/devbox/282r7g (Go to "Development" tab).

Steps:

  1. Create a CRACO app.
  2. Follow the guide in Minimizing Bundle Size docs under Configure Babel (the 'babel-plugin-import' one).
  3. Import ThemeProvider like this: import { ThemeProvider } from '@mui/material';.
  4. Render the ThemeProvider somewhere, and start your app.

Current behavior

An error is thrown:

Failed to compile.

Module not found: Error: Can't resolve '@mui/material/ThemeProvider' in '<project>/src/Component'

Expected behavior

An error will not be thrown

Context

This error occurs for ThemeProvider, styled, useTheme, and several other imports I believe

Your environment

  System:
    OS: macOS 14.5
  Binaries:
    Node: 20.12.2 - ~/.nvm/versions/node/v20.12.2/bin/node
    npm: 10.7.0 - ~/.nvm/versions/node/v20.12.2/bin/npm
    pnpm: Not Found
  Browsers:
    Chrome: 124.0.6367.209
    Edge: Not Found
    Safari: 17.5
  npmPackages:
    @emotion/react: ^11.11.4 => 11.11.4 
    @emotion/styled: ^11.11.5 => 11.11.5 
    @mui/base:  5.0.0-beta.40 
    @mui/core-downloads-tracker:  5.15.18 
    @mui/icons-material: ^5.15.18 => 5.15.18 
    @mui/lab: ^5.0.0-alpha.170 => 5.0.0-alpha.170 
    @mui/material: ^5.15.18 => 5.15.18 
    @mui/private-theming:  5.15.14 
    @mui/styled-engine:  5.15.14 
    @mui/styles: ^5.15.18 => 5.15.18 
    @mui/system:  5.15.15 
    @mui/types:  7.2.14 
    @mui/utils:  5.15.14 
    @types/react:  16.14.56 
    react: ^18.3.1 => 18.3.1 
    react-dom: ^18.3.1 => 18.3.1 

Search keywords: bundle-size

@RonSmithRX RonSmithRX added the status: waiting for maintainer These issues haven't been looked at yet by a maintainer label May 22, 2024
@zannager zannager added the package: system Specific to @mui/system label May 22, 2024
@danilo-leal danilo-leal changed the title Minimizing bundle using 'babel-plugin-import' results in 'Cant Resolve...' errors [material-ui] Minimizing bundle using 'babel-plugin-import' results in 'Cant Resolve...' errors May 28, 2024
@danilo-leal danilo-leal added package: material-ui Specific to @mui/material and removed package: system Specific to @mui/system labels May 28, 2024
@xondamirmuminov
Copy link

Same problem with me

@ZeeshanTamboli
Copy link
Member

ZeeshanTamboli commented Sep 14, 2024

This error occurs for ThemeProvider, styled, useTheme, and several other imports I believe

The error occurs for ThemeProvider, styled, useTheme, and other similar imports because they need to be imported from @mui/material/styles because they are available under styles folder. These are transformed to @mui/material/styles/ThemeProvider, etc., while other components like Button are correctly transformed by the Babel plugin i.e import { Button } from '@mui/material' gets transformed to import Button from '@mui/material/Button'.

Copy link

This issue has been closed. If you have a similar problem but not exactly the same, please open a new issue.
Now, if you have additional information related to this issue or things that could help future readers, feel free to leave a comment.

Note

We value your feedback @RonSmithRX! How was your experience with our support team?
If you could spare a moment, we'd love to hear your thoughts in this brief Support Satisfaction survey. Your insights help us improve!

@ZeeshanTamboli ZeeshanTamboli removed the status: waiting for maintainer These issues haven't been looked at yet by a maintainer label Sep 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
package: material-ui Specific to @mui/material
Projects
None yet
Development

No branches or pull requests

6 participants