danceratopz / blockchain-developer-bootcamp-final-project

NFT Fractionalizer - Final Project for the 2021 Consensys Blockchain Developer Bootcamp
MIT License
8 stars 4 forks source link

Frontend Build: Css Minimizer Plugin: Ignoring local source map #3

Open danceratopz opened 2 years ago

danceratopz commented 2 years ago

Building the frontend with:

yarn build

generates the warning:

Css Minimizer Plugin: Ignoring local source map at "/opt/build/repo/client/bootstrap.min.css.map" as resource is missing. 

The warning seems to make little sense as bootstrap.min.css.mmap is located in client/node_modules/bootstrap/dist/css/.

danceratopz commented 2 years ago

For now this is solved using the ugly hack of removing the mapping from the installed css file (upon the deployment step in netlify itself) https://stackoverflow.com/a/23909455

I didn't mange to solve it via config as suggested in the comments to this question here: https://stackoverflow.com/q/56244866