Skip to content

Commit 59159f0

Browse files
committed
chore: LoadingSpinner import문 절대경로로 수정
1 parent efa2eac commit 59159f0

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/components/LoadingCommentBox.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
import LoadingSpinner from "./spinner/LoadingSpinner";
1+
import LoadingSpinner from "@/components/spinner/LoadingSpinner";
22

33
const LoadingCommentBox = () => {
44
return (
5-
<div className="flex justify-center items-center border-gray-100 bg-white border rounded-xl rounded-tl-none w-[100px] h-[52px]">
5+
<div className="flex justify-center items-center bg-white border border-gray-100 rounded-xl rounded-tl-none w-[100px] h-[52px]">
66
<LoadingSpinner />
77
</div>
88
);

tsconfig.app.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
{
22
"compilerOptions": {
3+
"baseUrl": "src",
4+
"paths": {
5+
"@/*": ["*"]
6+
},
37
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
48
"target": "ES2020",
59
"useDefineForClassFields": true,

0 commit comments

Comments
 (0)