Server side rendering
Usage with SolidStart
If you are using SolidStart you will need to add the ssr setting to your vite.config.ts
:
ts
import solid from "solid-start/vite";import { defineConfig } from "vite";export default defineConfig({plugins: [solid()],ssr: {noExternal: ["@kobalte/core", "@internationalized/message"],},});
ts
import solid from "solid-start/vite";import { defineConfig } from "vite";export default defineConfig({plugins: [solid()],ssr: {noExternal: ["@kobalte/core", "@internationalized/message"],},});
Kobalte has been tested with solid-js@1.7.11
and solid-start@0.3.4
, compatibility with other
versions is not guaranteed.