<!-- Issues are so 🔥 If you remove or skip this template, you'll make the 🐼 sad and the mighty god of Github will appear and pile-drive the close button from a great height while making animal noises. 👉🏽 Need support, advice, or help? Don't open an issue! Head to StackOverflow or https://gitter.im/webpack/webpack. --> - Operating System: macOS - Node Version: 12.14.1 - NPM Version: 6.13.4 - webpack Version: 5.4.0 - mini-css-extract-plugin Version: 1.3.0 ### Expected Behavior When webpack is running from cache, output is the same as without. ### Actual Behavior When reading from cache assets imported from css are not found. ### Code https://github.com/piecyk/mini-css-extract-plugin-asset-cache-bug ### How Do We Reproduce? 1. checkout mini-css-extract-plugin-asset-cache-bug 2. yarn webpack 3. checkout output from ./dist ``` ./dist/ ├── index.html ├── main.css ├── main.js └── static └── webpack-logo.svg ``` 4. rm -rf ./dist/ 5. yarn webpack 6. checkout output from ./dist ``` ./dist/ ├── index.html ├── main.css └── main.js ```