frandiox / vite-ssr

Use Vite for server side rendering in Node
MIT License
824 stars 91 forks source link

[Question] How can I bundle all dependencies in server build? #161

Closed domsen123 closed 2 years ago

domsen123 commented 2 years ago

Is it possible to bundle (or specific) dependencies in server build? I tried with some rollup plugins "commonjs, resolve" etc. but nothing works :(

frandiox commented 2 years ago

Try with ssr.noExternal: true. It will fail if you are importing Node built-ins, though.

domsen123 commented 2 years ago

thanks - this works....