I am trying to deploy a somewhat older project made in Vue2 where I produce a static version (found in the dist folder). How should I setup deployment to use the yarn run build command in the build step and then simply serve the contents of the dist directory upon deployment?
The app builds fine with the Nixpacks builder if I set my node version to 14 but it then tries to run the project with node when this is not needed because there is no SSR (also, serving the project doesn't seem to work for me). I simply need the pre-built output to be served which would be much more efficient than running node.
Thanks