如何调试调用 404 错误的位置

How to debug where a 404 error is being called from

我有一个设置,其中我所有的 less 文件都被编译成一个 css 文件,它包含在我的页面的头部,但不知何故,less 文件仍在某处被调用,并且由于它们被 gitignored,所以当我部署时,我收到了一堆 404 错误。它实际上并不影响页面(因为我只是使用 CSS 文件),但我想防止错误。请参阅随附的屏幕截图。

任何人都知道这些文件是如何被请求的或者我可能会在哪里查看/我可能会如何调试它?

您的其中一个 CSS 文件包含 @import "somefile.less" 没有经过预处理?

从评论迁移而来,OP 指出这是答案:

courses.css includes its sourcemap (see the very end of the file) referencing all those less files (so it seems Chrome tries to request them when you have its Developer tools open). You need to disable the sourcemap generation for your production builds.

seven-phases-max