Module not found: You attempted to import ../container/App which falls outside of the project src/ directory. Relative imports outside of src/ are not supported


In some React boilerplates, you can’t automatically import something that is not inside the src folder. Your import ../container/App in index.js is doing that. I think that the container folder is a sibling of that file so I would expect the import to be ./container/App.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.