Replies: 3 comments
-
Would you please try webpack to see if they support this? |
Beta Was this translation helpful? Give feedback.
0 replies
-
As far as I know webpack has a similar limitation, but webpack hasn't had a major release since 2020. |
Beta Was this translation helpful? Give feedback.
0 replies
-
@dinofx webpack still ships new feature in minor release, if it's not a breaking change it doesn't require a major release. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
What problem does this feature solve?
A "regular" loader can be passed options via module rules. For example:
But for an inline loader, there seems to be only one way to pass "options", and it involves polluting the
LoaderContext
namespace used by every loader. Example config:The above
"loader"
config property does not scale well. Eventually two loaders will use the sameloader
property name, but define it to mean different things.What does the proposed API of configuration look like?
Proposed:
Beta Was this translation helpful? Give feedback.
All reactions