diff --git a/src/components/common/header/index.tsx b/src/components/common/header/index.tsx index ba0394e..7ea521e 100644 --- a/src/components/common/header/index.tsx +++ b/src/components/common/header/index.tsx @@ -1,7 +1,7 @@ import styled from '@emotion/styled'; import LogoImg from '@/assets/Logo.svg'; import { useEffect, useState } from 'react'; -import { Button } from '../Button'; +import { Button } from '@/components/common/Button'; import { useLocation } from 'react-router-dom'; import { css } from '@emotion/react'; diff --git a/tsconfig.json b/tsconfig.json index 1adce99..0546665 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -20,7 +20,8 @@ "allowSyntheticDefaultImports": true, "noUnusedLocals": true, "noUnusedParameters": true, - "noFallthroughCasesInSwitch": true + "noFallthroughCasesInSwitch": true, + "forceConsistentCasingInFileNames": true }, "include": ["src", "src/custom.d.ts"] }