Answer the question
In order to leave comments, you need to log in
How to make a shortcut to a folder in react?
Tired of specifying a long path to the folder all the time example: './.../.../../components'
how to make it just to specify 'components'
Answer the question
In order to leave comments, you need to log in
webpack.config.js
resolve: {
alias: {
components: path.resolve(__dirname, "./src/components")
}
}
Use the absolute path
https://medium.com/@ktruong008/absolute-imports-wi...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question