From 82ea14f053476ff56da97875250344278bb9b711 Mon Sep 17 00:00:00 2001 From: "Andrey K. Choi" Date: Sun, 2 Nov 2025 07:03:27 +0900 Subject: [PATCH] fix(frontend): remove missing test-styles.css import - Remove reference to non-existent test-styles.css file in globals.css - This resolves frontend build error in Docker/CI environment - Keep existing layouts.css import which exists and is valid Fixes: Can't resolve './test-styles.css' webpack error --- frontend/linktree-frontend/src/app/globals.css | 1 - 1 file changed, 1 deletion(-) diff --git a/frontend/linktree-frontend/src/app/globals.css b/frontend/linktree-frontend/src/app/globals.css index b91ea65..98594f0 100644 --- a/frontend/linktree-frontend/src/app/globals.css +++ b/frontend/linktree-frontend/src/app/globals.css @@ -1,6 +1,5 @@ @import "tailwindcss"; @import "./styles/layouts.css"; -@import "./test-styles.css"; /* src/app/globals.css */ @tailwind base; @tailwind components;