Replies: 2 comments
-
A webpack loader is basically a function that takes some source code in input, transforms it, and returns some new source code as output. What webpack does with that code then I don't know, but I assume it just passes it to the next loader. I recommend setting a breakpoint at Line 215 in 8f88667 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thanks, I ended up reverting back to using plugins because I was looking for compiled code and it was available during the plugin compilation. |
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am using babel-loader and I have a custom loader, my custom loader input source is getting original source and not the transformed source returned from babel-loader. I have read the docs and I understand the order of execution for loaders.
Beta Was this translation helpful? Give feedback.
All reactions