From 17cfaf8e3edccffb02217157d8d9cd126c7c0b89 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Fri, 13 Feb 2026 22:52:56 +0900 Subject: refactor(frontend): replace Node.js runtime with nginx in Dockerfile Co-Authored-By: Claude Opus 4.6 --- frontend/nginx.conf | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 frontend/nginx.conf (limited to 'frontend/nginx.conf') diff --git a/frontend/nginx.conf b/frontend/nginx.conf new file mode 100644 index 0000000..f749e02 --- /dev/null +++ b/frontend/nginx.conf @@ -0,0 +1,9 @@ +server { + listen 80; + root /usr/share/nginx/html; + index index.html; + + location / { + try_files $uri $uri/ /index.html; + } +} -- cgit v1.3.1