We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce12171 commit ef905c3Copy full SHA for ef905c3
.changeset/chilled-pets-help.md
@@ -0,0 +1,5 @@
1
+---
2
+'@vanilla-extract/vite-plugin': minor
3
4
+
5
+Add experimental support for [SolidStart](https://github.com/solidjs/solid-start)
packages/vite-plugin/src/index.ts
@@ -68,7 +68,11 @@ export function vanillaExtractPlugin({
68
postCssConfig = await resolvePostcssConfig(config);
69
}
70
71
- if (config.plugins.some((p) => p.name === 'astro:build')) {
+ if (
72
+ config.plugins.some((plugin) =>
73
+ ['astro:build', 'solid-start-server'].includes(plugin.name),
74
+ )
75
+ ) {
76
forceEmitCssInSsrBuild = true;
77
78
},
0 commit comments