From 405bc1db3e04017f07cd5647992d4c785fc6c2a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EB=B3=B4=EA=B3=A4?= Date: Thu, 12 Feb 2026 16:41:06 +0900 Subject: [PATCH] =?UTF-8?q?fix:sign.blade.php=20=EC=A3=BC=EC=84=9D=20?= =?UTF-8?q?=EB=82=B4=20Blade=20=ED=8C=8C=EC=8B=B1=20=EC=B6=A9=EB=8F=8C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 주석의 {{ }} 텍스트를 Blade가 PHP 코드로 해석하여 ParseError 발생 Co-Authored-By: Claude Opus 4.6 --- resources/views/esign/sign/sign.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/esign/sign/sign.blade.php b/resources/views/esign/sign/sign.blade.php index fe1cc1a4..b0ad6b9f 100644 --- a/resources/views/esign/sign/sign.blade.php +++ b/resources/views/esign/sign/sign.blade.php @@ -21,7 +21,7 @@ const TOKEN = document.getElementById('esign-sign-root')?.dataset.token; -// 인라인 스타일 (Blade {{ }} 충돌 방지) +// 인라인 스타일 상수 const STYLES = { canvasWrap: { height: '200px' }, canvas: { width: '100%', height: '100%', touchAction: 'none' },