When developing React using create-react-app with custom-react-scripts, I wanted to use absolute paths for import, and I found this: just adding NODE_PATH=src/
to “.env” file. It worked on Windows, but not on Linux.
After a while, I sorted it out: echo $NODE_PATH
told me that my Linux had NODE_PATH
being set somewhere. Then, being conservative, I just added unset NODE_PATH
to “~/.bashrc” file, and it finally worked.
JavaScript development is a nightmare these days.
No comments:
Post a Comment