-
-
Notifications
You must be signed in to change notification settings - Fork 143
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
fix: vanilla extract compatibility and better css handling #171
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
|
||
import { loadServerFile } from '/Users/alibaba/oss/waku/packages/waku/dist/lib/middleware/rsc/ssr.js'; | ||
const { Counter } = await loadServerFile('/Users/alibaba/oss/waku/examples/12_css/src/components/Counter.tsx', 'dev'); | ||
export { Counter } |
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.
Please remove .temp-*
files.
Co-authored-by: Daishi Kato <[email protected]>
vanillaExtractPlugin
const collectCssUrls = (mods: Set<ModuleNode>, styles: Map<string, string>) => { | ||
for (const mod of mods) { | ||
if (mod.ssrModule && mod.file && mod.id) { | ||
if (mod.file.endsWith('.css') || /\?vue&type=style/.test(mod.id)) { |
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.
why is there a vue
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.
This whole function is not used, I just copied it for an experiment from vitejs/vite#2282 (comment)
I'll remove it when I get this done!
Let me grab this idea and open a PR separately. |
After trying it, I don't feel using |
Agreed, It's not the correct approach, but we had to do it, if you have a better idea that brings the whole user's config, that's so much better and feel free to push it so I rebase. |
https://github.com/dai-shi/waku/pull/176/files#r1404458905 |
I'll continue in another PR. |
btw, this brought #228, so much appreciated. |
Resolves #59