So I've made a Bun app using bun create react
Now I'm looking to deploy it to production (via Netlify) and am at a loss as to how.
bun build
doesn't seem to work. Is there a specific command that's not in the documentation?
There are no production builds of Bun yet (as of version 0.3 at least). So you would need to use something like react-scripts or Vite.
I have built an example project just for this question :) https://github.com/JLarky/bun-netlify
The main steps are:
react-scripts
npm install
on CI