You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have the same problem. But in my case, definitions are not generated at all. I suspect that this is due to the update of the mini-css-extract-plugin to 0.10 version, but I haven't investigated this problem yet.
Solved my problem by changing the loaders order.
Before: typings-for-css-loader ⬅ mini-css-loader ⬅ css-loader
After mini-css-loader ⬅ typings-for-css-loader ⬅ css-loader
Hello, I have a project that is run using create-react-app and customize-cra, here is what I do in my config-overrides.js
The issue that I'm having is that if the types are only getting generated if I do this:
import './colors.scss';
and not if i do:
I feel like I must be missing something obvious... any help would be appreciated :)
The text was updated successfully, but these errors were encountered: