Skip to content

Commit

Permalink
fix: 적용안되는 alias 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
ddubbu-dev committed Nov 11, 2023
1 parent c74453b commit 0405891
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Front-end/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Login from './pages/Login';
import Parents from './pages/Parents';
import CheckKidsinfo from './pages/CheckKidsinfo';
import Institution from './pages/Institution';
import { PageUrls } from '@constants/page-urls';
import { PageUrls } from './constants/page-urls';

function App() {
return (
Expand Down
2 changes: 1 addition & 1 deletion Front-end/src/pages/CheckKidsinfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { parentsState } from '../recoil/parentsState';
import CheckInfo from '../components/CheckKidsInfo/CheckInfo';
import HeaderContainer from '../components/Header/HeaderContainer';
import LongBtn from '../components/Button/LongBtn';
import { PageUrls } from '@constants/page-urls';
import { PageUrls } from './constants/page-urls';

const CheckKidsinfo = () => {
const [parent] = useRecoilState(parentsState);
Expand Down
5 changes: 1 addition & 4 deletions Front-end/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": "./src",
"paths": {
"@constants/*": ["constants/*"]
}
"baseUrl": "./src"
},
"include": ["src/**/*"],
"ignoreCase": true
Expand Down

0 comments on commit 0405891

Please sign in to comment.