Can I configure Webpack so that
require("app/foo")
I mean, I want a namespace prefix for my stuff, but I don't want to set the search path to ".." or whatever.
Can I configure Webpack so that
imports `foo` from my project root, even if my project root folder isn't named `app` (it's something like `src`)?I mean, I want a namespace prefix for my stuff, but I don't want to set the search path to ".." or whatever.