Created by: tannerlinsley
This change makes it possible to import components from the root of your apps src
directory, turning imports like these:
import Button from ‘../../components/button’
into this:
import Button from ‘components/button’
I’m curious what the ramifications would be. Personally I used this in all of my old webpack configs and can’t praise the convenience enough.
Thoughts?