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
In short, support @import "../../deps/petal_components/assets/default.css";
The problem is that the TailwindCompiler needs to concat custom stylesheet with the provided user config tailwind_css so it will create a temp file in a temp dir instead of just using the path of app.css which will break any relative path.
That creates a conflict between :tailwind_css and Beacon.Content.Stylesheet, ie: we should find a way to inject Stylesheet content into app.css, for eg: @import "beacon/stylesheet";
The text was updated successfully, but these errors were encountered:
In short, support
@import "../../deps/petal_components/assets/default.css";
The problem is that the
TailwindCompiler
needs to concat custom stylesheet with the provided user configtailwind_css
so it will create a temp file in a temp dir instead of just using the path ofapp.css
which will break any relative path.That creates a conflict between
:tailwind_css
andBeacon.Content.Stylesheet
, ie: we should find a way to injectStylesheet
content intoapp.css
, for eg:@import "beacon/stylesheet";
The text was updated successfully, but these errors were encountered: