Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
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
[examples] Add pigment-css-nextjs-ts starter project #41105
[examples] Add pigment-css-nextjs-ts starter project #41105
Changes from 7 commits
b9dd1ff
3e34f13
6bec039
de7ff2e
839a284
69ebd43
c294dfb
a8e8f09
272e1bc
539e5c3
3a1e93e
85087cc
cd8ddd2
47e1c1a
e3f4ba0
75c67f3
3013638
7585b0e
ad28f60
3bba2e1
c88f7e9
cf7d148
cea6412
4114c83
178a00a
8288b23
bcd0182
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just an FYI, These variables will be random during the build time. In the browser, it'll still be static.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, that's the intention.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's worth mentioning this behavior between emotion/zero-runtime:
Zero-runtime: generate just one set of variables (all instances will have the same styles).
Emotion: generate 10 random set of styles.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Zero-runtime: generate just one set of variables that'll only change when you rebuild the app. And for each build, it'll not change with page refresh.
Emotion: generate 10 random set of styles that'll also change with each page refresh.