Skip to content

Commit

Permalink
[feat/refactor] aseests 폴더 생성 및 public 폴더 제거
Browse files Browse the repository at this point in the history
  • Loading branch information
G-hoon committed Aug 20, 2024
1 parent 8bcada2 commit b051f23
Showing 10 changed files with 7 additions and 7 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
2 changes: 1 addition & 1 deletion src/components/Posture/GuidePopup.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import GuideImage from "@public/images/posture-guide-2x.png"
import GuideImage from "@assets/images/posture-guide-2x.png"

const GuidePopup = ({ onClose }: { onClose: () => void }) => {
return (
8 changes: 4 additions & 4 deletions src/components/SideNav.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import MainCraftIcon from "@public/icons/posture-craft-side-nav-icon.svg?react"
import MonitoringIcon from "@public/icons/side-nav-monitor-icon.svg?react"
import AnalysisIcon from "@public/icons/side-nav-analysis-icon.svg?react"
import CrewIcon from "@public/icons/side-nav-crew-icon.svg?react"
import MainCraftIcon from "@assets/icons/posture-craft-side-nav-icon.svg?react"
import MonitoringIcon from "@assets/icons/side-nav-monitor-icon.svg?react"
import AnalysisIcon from "@assets/icons/side-nav-analysis-icon.svg?react"
import CrewIcon from "@assets/icons/side-nav-crew-icon.svg?react"
import { useAuthStore } from "@/store/AuthStore"

const navItems = [
2 changes: 1 addition & 1 deletion src/pages/HomePage.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import MainCraftIcon from "@public/icons/posture-craft-side-nav-icon.svg?react"
import MainCraftIcon from "@assets/icons/posture-craft-side-nav-icon.svg?react"

const REST_API_KEY = import.meta.env.VITE_OAUTH_KAKAO_REST_API_KEY
const REDIRECT_URI = import.meta.env.VITE_OAUTH_KAKAO_REDIRECT_URI
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -29,7 +29,7 @@
"@pages/*": ["src/pages/*"],
"@layouts/*": ["src/layouts/*"],
"@store": ["src/store/*"],
"@public/*": ["src/public/*"]
"@assets/*": ["src/assets/*"]
}
},
"include": ["src", "svg.d.ts"],

0 comments on commit b051f23

Please sign in to comment.