From c39a7c0b0cbbb535d34ea7b387c5db8f60f0f7e3 Mon Sep 17 00:00:00 2001 From: Macbook Date: Sun, 14 Jun 2026 16:42:35 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20app=20=EB=B9=8C=EB=93=9C=20=EC=8B=9C=20?= =?UTF-8?q?=EC=83=81=EC=9C=84=20postcss.config=20=EC=98=A4=EC=97=BC=20?= =?UTF-8?q?=EB=B0=A9=EC=A7=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 서버 홈 디렉터리 postcss가 Vite 빌드를 깨지 않도록 app 전용 설정을 추가한다. Co-authored-by: Cursor --- app/postcss.config.cjs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 app/postcss.config.cjs diff --git a/app/postcss.config.cjs b/app/postcss.config.cjs new file mode 100644 index 0000000..f3729b9 --- /dev/null +++ b/app/postcss.config.cjs @@ -0,0 +1,4 @@ +/** 프로젝트 전용 — 상위(~) postcss.config.js(tailwind) 로드 방지 */ +module.exports = { + plugins: {}, +};