babel-plugin-module-resolver
babel-plugin-module-resolver copied to clipboard
applying multiple aliases
is there a way to apply multiple aliases, e.g.
[
'module-resolver',
{
alias: {
'^lazy!(.*)': '\\1',
bundles: './static/bundles',
},
},
],
I would like lazy!bundles/some/file to resolve to ./static/bundles/some/file.
Thanks!