我有两个react应用程序(A-app,B-app)。我需要将一个组件从 A-app 导入到 B-app。但是当我尝试这样做时,我看到了这个错误。
./src/App.js
Module not found: You attempted to import ../../src/components/Dashboard/container which falls outside of the project src/ directory. Relative imports outside of src/ are not supported. You can either move it inside src/, or add a symlink to it from project's node_modules/.
我试图在 B-app node_modules 中的这个组件上做符号链接。但它没有用。
我还尝试在根项目目录中创建 .env 文件并将其放入NODE_PATH=src/
文件中。但是这个解决方案也不起作用。
我怎样才能解决这个问题?
对不起我的英语不好。