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
{{ message }}
This repository was archived by the owner on Jan 26, 2019. It is now read-only.
I installed typestyle with npm install --save-dev typestyle to add styles in the the Typescript files and the web app in the dev environment is working as expected. However when I run npm run build to generate the minified css file I don't see the style in the file. I'm just wondering if I anyone had a similar experience! Do I need to install a loader for the typestyle as well?
The text was updated successfully, but these errors were encountered:
typestyle is css inside js, it won't generate a css file, it will just generate a class name in runtime and append that css code to a <style> tag in the head (again at runtime)
I installed typestyle with
npm install --save-dev typestyle
to add styles in the the Typescript files and the web app in the dev environment is working as expected. However when I runnpm run build
to generate the minified css file I don't see the style in the file. I'm just wondering if I anyone had a similar experience! Do I need to install a loader for the typestyle as well?The text was updated successfully, but these errors were encountered: