We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27a39b4 commit 707a010Copy full SHA for 707a010
packages/start/src/config/index.ts
@@ -80,6 +80,16 @@ export function solidStart(options?: SolidStartOptions): Array<PluginOption> {
80
return {
81
appType: "custom",
82
build: { assetsDir: "_build/assets" },
83
+ optimizeDeps: {
84
+ // Suppress TS errors from Vite 7 types when configuring Vite 8's Rolldown
85
+ ...({
86
+ rolldownOptions: {
87
+ transform: {
88
+ jsx: "react",
89
+ },
90
91
+ } as any),
92
93
environments: {
94
[VITE_ENVIRONMENTS.client]: {
95
consumer: "client",
0 commit comments