Is there a babel
plugin to avoid long import path in CRA?
I've searching a lot on the web but I can't find the best way to achieve this.
Actual:
import MyComponent from '../../../../components/MyComponent'
Expected
import MyComponent from 'components/MyComponent'