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
Source:stackexchange.com