usually our project has a lot of common js files, which are usually referenced in components
import a from "../../mods/a.js"
it"s tedious to see such a long list of paths. For this kind of public file, I want to achieve this effect when referencing
import a from "a"
Does need to be configured in webpack?