We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
css
styled
Currently transformed inputs for those functions are as follows:
import { css } from "next-yak/internal" css``
If we optimize and use same trick as used in #154 and import it the following way:
import * as __yak from "next-yak/internal" __yak.css``
Webpack will better optimize bundle size because it can use (minified, e.g.) s.As instead of (0, s.As) to access those functions
s.As
(0, s.As)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently transformed inputs for those functions are as follows:
If we optimize and use same trick as used in #154 and import it the following way:
Webpack will better optimize bundle size because it can use (minified, e.g.)
s.As
instead of(0, s.As)
to access those functionsThe text was updated successfully, but these errors were encountered: