From my understanding, webpack in dev mode stores all imported files in a certain location and then serves the bundle.js file to the client. If the code inside bundle.js requests a CSS file, the css-loader should have already been configured to provide the correct file path for the client to load the stylesheet from the server. I am looking for a way to verify this and make sure that my server has the required stylesheet. Is there a method to accomplish this?