From 243e07efe47cd53d07ba613120abcc1938e87935 Mon Sep 17 00:00:00 2001 From: "railway-app[bot]" <68434857+railway-app[bot]@users.noreply.github.com> Date: Sat, 4 Apr 2026 21:51:36 +0000 Subject: [PATCH] fix: add railway.toml to frontend to pin Dockerfile path --- frontend/railway.toml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 frontend/railway.toml diff --git a/frontend/railway.toml b/frontend/railway.toml new file mode 100644 index 0000000..ed6afc0 --- /dev/null +++ b/frontend/railway.toml @@ -0,0 +1,6 @@ +[build] +# Explicitly use the Dockerfile in this directory (Node.js 22). +# Without this, Railway auto-detects and generates a Dockerfile using +# Node.js 18, which is incompatible with the version of Vite used here +# (rolldown-vite requires Node.js 20.19+ or 22.12+). +dockerfilePath = "Dockerfile"