From 811e29731de2d6ef8ad82cb739b020b9c366dde8 Mon Sep 17 00:00:00 2001 From: xtremind Date: Sun, 21 Dec 2025 22:25:31 +0100 Subject: [PATCH] Add render.yaml configuration for Next.js service --- render.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 render.yaml diff --git a/render.yaml b/render.yaml new file mode 100644 index 0000000..b43d5f4 --- /dev/null +++ b/render.yaml @@ -0,0 +1,21 @@ +services: +- type: web + name: next-js + runtime: node + plan: free + buildCommand: npm i + startCommand: npm run watch + autoDeploy: false + envVars: + - key: NODE_ENV + value: development +# Uncomment the following to deploy this app as a static site on render +# - type: web +# name: nextjs-static +# runtime: static +# buildCommand: yarn; yarn build +# staticPublishPath: out +# pullRequestPreviewsEnabled: true # optional +# envVars: +# - key: NODE_ENV +# value: production