I’d like to statically generate my site (pages including content are generated as html during build time, e.g. using output: “export”), but when I include
<BuilderComponent content={content} />
on my page, I get an error:
Error: createContext only works in Client Components. Add the “use client” directive at the top of the file to use it.
How can I include builder components in a server component?