Can't resolve '@/components/...'
Created by: Haltz
Describe the bug
When I specfied 'path' in tsconfig.json, webpack ignore it. So if I write
"paths": {
"Images/*": ["src/assets/images/*"],
"Styles/*": ["src/assets/styles/*"],
"Utils/*": ["src/assets/utils/*"],
"@/*": ["src/*"],
"*": ["node_modules/*", "src/typings/*"]
},
it will report error such as 'Can't resolve '@/components/...' Maybe you should fix this? This problem cost me quite a little time for a new learner(me).