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
The actual way to make the devtools css working is to import:
import 'async-states-devtools/dist/style.css';
which will lead this extra css to make it to the bundle.
The goal is to eliminate this need before v2 lands, either by inlining all styles, or by using a js utility that will produce them on the fly.
Impact:
import 'async-states-devtools/dist/style.css'; will fail, but that's part of the v2. this css import should not be used and should not make it to the bundle
The text was updated successfully, but these errors were encountered:
The actual way to make the devtools css working is to import:
import 'async-states-devtools/dist/style.css';
which will lead this extra css to make it to the bundle.
The goal is to eliminate this need before v2 lands, either by inlining all styles, or by using a js utility that will produce them on the fly.
Impact:
import 'async-states-devtools/dist/style.css';
will fail, but that's part of the v2. this css import should not be used and should not make it to the bundleThe text was updated successfully, but these errors were encountered: