We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a common piece of config in my projects once they grow to any size:
webpack: { extra: { resolve: { alias: { 'img': path.resolve('src/img'), 'src': path.resolve('src') } } } }
It would be handier to configure it as:
webpack: { aliases: { 'img': path.resolve('src/img'), 'src': path.resolve('src') } }
(I've been tripped up in the past by forgetting the resolve object, too).
resolve
The text was updated successfully, but these errors were encountered:
Added webpack.aliases config
ced0c40
Closes #125
e87ca8c
No branches or pull requests
This is a common piece of config in my projects once they grow to any size:
It would be handier to configure it as:
(I've been tripped up in the past by forgetting the
resolve
object, too).The text was updated successfully, but these errors were encountered: