Skip to content

Commit

Permalink
Merge pull request #48 from GDSC-PKNU-21-22/config/#47
Browse files Browse the repository at this point in the history
Config/#47: contexts 폴더 절대경로로 설정
  • Loading branch information
hwinkr authored Apr 10, 2023
2 parents 75b5cce + a03a633 commit e105500
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
Empty file added src/contexts/.gitkeep
Empty file.
1 change: 1 addition & 0 deletions tsconfig.path.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"@type/*": ["./src/@types/*"],
"@components/*": ["./src/components/*"],
"@constants/*": ["./src/constants/*"],
"@contexts/*": ["./src/contexts/*"],
"@styles/*": ["./src/styles/*"],
"@utils/*": ["./src/utils/*"],
"@hooks/*": ["./src/hooks/*"],
Expand Down
4 changes: 4 additions & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ export default defineConfig({
find: '@constants',
replacement: resolve(__dirname, './src/constants'),
},
{
find: '@contexts',
replacement: resolve(__dirname, './src/contexts'),
},
{
find: '@styles',
replacement: resolve(__dirname, './src/styles'),
Expand Down

0 comments on commit e105500

Please sign in to comment.