Question #180

Author: admin
tags: frontend (web)   webpack  
In what order are webpack loaders applied to an imported resource if there is more than one loader?
The first loader in the array will be executed first, etc.
In reverse order: the last loader in the array will be executed first.
Unlike plugins, it doesn't matter in what order the loaders are written in the array.
One cannot apply more than one loader to an imported resource.
Rate the difficulty of the question:
easyhard