Replies: 2 comments
|
In production, For example, if your scripts look like this: {
"scripts": {
"start": "node .output/server/index.mjs"
}
}then these are effectively the same app: npm run start
node .output/server/index.mjsThe small differences are mostly around npm itself:
So the important question is not “Vinxi container vs not”, but “what does my For deployment, I’d normally pick one clear entry point and keep it consistent everywhere. Many teams use |
|
For the default Node preset (no custom Where it does matter is if you configure a non-default Since you're on the default preset from what you described, running either command should produce identical behavior. If you're seeing an actual difference, that would be worth digging into as its own issue rather than expected default-preset behavior. |
|
We're focusing our limited maintenance resources on SolidStart v2, which should be fairly easy to migrate Solid v1 apps to. It removes vinxi entirely, including the |
Uh oh!
There was an error while loading. Please reload this page.
I'm sorry if this is something so obvious or stupid to ask, but what is the difference in production result between
npm run startandnode .output/server/index.mjs. I would assume thenpm run startstart the app in vinxi container andnode .output/server/index.mjsis not. I don't really know much about deploymentAll reactions