Discover Render.com preset for Nitro!
Preset: render-com
(switch to this preset)
Nitro supports deploying on Render with minimal configuration.
yarn && yarn build
, npm install && npm run build
, or pnpm i --shamefully-hoist && pnpm build
.node .output/server/index.mjs
NITRO_PRESET
set to render-com
.render.yaml
with following content at the root of your repository.This file followed by Infrastructure as Code on Render
services:
- type: web
name: <PROJECTNAME>
env: node
branch: main
startCommand: node .output/server/index.mjs
buildCommand: npm install && npm run build
envVars:
- key: NITRO_PRESET
value: render-com
render.yaml
file.You should be good to go!