I've created a brand new react app
create-react-app demo
I need to create alias for some directories/components like:
import { Header } from '@uicomponents'
Where @uicomponents is shortcut for the path 'src/hello/this/is/the/path/to/ui/components '
All online tutorials telling that I can use alias imports using resolve.alias, but I'm wondering how to do this with brand-new react app?
Theres is no .babelrc or webpack.config.js files.
Any help please?
Module not found: Can't resolve 'messagesComponents/Message' in '/Projects/widget/src/store/reducers'