Hi
I'm using react and solidjs in astrojs project and when add solidjs component show this error: Error hydrating /src/features/solid/analyzing/form/solidForm.tsx SyntaxError: The requested module '/node_modules/.vite/deps/solid-js_jsx-dev-runtime.js?v=888e9cbc' does not provide an export named 'jsxDEV'
help me
astro config : ```// @ts-check
import { defineConfig } from "astro/config";
import react from "@astrojs/react";
import node from "@astrojs/node";
import solidJs from "@astrojs/solid-js";
// https://astro.build/config
export default defineConfig({
output: "server",
integrations: [
react({
include: ["/react/*"],
}),
solidJs({
include: ["/solid/*"],
}),
],
adapter: node({
mode: "standalone",
}),
});
and using like this:
<SolidForm client:only="solid-js"/>