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

Can't import the named export 'Children' from non EcmaScript module #1686

Open
designbyadrian opened this issue Dec 17, 2021 · 2 comments
Open

Comments

@designbyadrian
Copy link

This is an issue with framer-motion running on certain setups including Create React App, NextJS, and Storybook.

The issue is more explained here: framer/motion#1307, but I'd like to leave a report here because I think something needs to be adressed in this repo.

@Eric-Canas
Copy link

In Create React App 5 it is no longer an Issue. If you have a project created with a previous version just try to update react-scripts, it solved the problem for me.

npm install react-scripts@5.0.0

@prxg22
Copy link

prxg22 commented Feb 8, 2022

I was able to fix this by adding gatsby-node.js at the root of my project and the following rule on the webpack:

exports.onCreateWebpackConfig = ({ actions }) => {
  actions.setWebpackConfig({
    module: {
      rules: [
        {
          test: /\.mjs$/,
          include: /node_modules/,
          type: 'javascript/auto',
        },
      ],
    },
  })
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants