[Fixed]-Webpack setup, webpack doesn't resolve(pack into bundle) css files

1đź‘Ť

âś…

From the error messages, it looks like you’re trying to include ./testings.css in the file static/js/envs.jsx, so Webpack is (understandably) trying to find that CSS file in static/js:

…/static/js/testings.css doesn’t exist

Try including ../css/testings.css instead.

👤robertklep

Leave a comment