Deploying to production
First off, great job on this! I had my app deployed to production as a non-ssr application and it was working fine. After getting SSR configured I ran into issues with it saying the module inertia/ssr/ssr.js couldn't be found. Come to find out, it was expecting the inertia/ssr directory to be locted inside of the build directory, but that doesn't seem to happen by default.
I ended up fixing the problem by changing the build directory inside of webpack.ssr.config.js to build/inertia/ssr, but I wanted to know if there's a better way because that just feels kinda hacky.
Hey @watzon and Thank you! Glad to know you're using this in production.
I'll have to look into this, but in the meanwhile I think your solution is valid.
Maybe, to make it more robust you can check NODE_ENV and choose an entrypoint based on that?
Yeah I'll do that for now, thanks :)