-
I'm experiencing to be unable to create a SolidStart project without ssr after upgrading to beta 2. I have tried creating a new project and selecting "n" to I have noticed that the folder it searches for node_modules is inside the parent directory of my app-folder. ` ERROR The requested module '[...]/node_modules/seroval/dist/esm/production/index.mjs' does not provide an export named 'createStream' import { createPlugin, createStream, fromJSON, crossSerializeStream, getCrossReferenceHeader } from '[...]/node_modules/seroval/dist/esm/production/index.mjs'; ERROR The requested module '[...]/node_modules/seroval/dist/esm/production/index.mjs' does not provide an export named 'createStream'` |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I have solved the case. It turns out installing with pnpm gives this error. You are able to build with ssr: false if you install using |
Beta Was this translation helpful? Give feedback.
I have solved the case. It turns out installing with pnpm gives this error. You are able to build with ssr: false if you install using
npm install
.