Skip to content

[이태경] Sprint7 #235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
c55ea96
refactor: Typescript로 마이그레이션, tsconfig.json 설정
LeeTaegyung Jul 10, 2025
02abbce
feature(ProductDetailPage): 상품 상세페이지 route 추가
LeeTaegyung Jul 10, 2025
8b615d8
refactor: Typescript로 마이그레이션, globalStyle, mixins 설정
LeeTaegyung Jul 11, 2025
d799fc6
refactor(TextArea): TextArea 컴포넌트 리팩토링
LeeTaegyung Jul 12, 2025
e9047a2
feature(Button): 공용 컴포넌트 Button 설계
LeeTaegyung Jul 12, 2025
0949a01
chore: alias 세팅
LeeTaegyung Jul 13, 2025
336e745
feat(Dropdown): 공통 컴포넌트 Dropdown 추가
LeeTaegyung Jul 13, 2025
2874dbb
feature(TagItem): 공통 컴포넌트 TagItem 추가
LeeTaegyung Jul 14, 2025
0052a7b
feature(DetailDropdown): 상세페이지 드랍다운 추가
LeeTaegyung Jul 16, 2025
39cdea6
feature(LinkButton): 버튼 스타일의 링크 추가
LeeTaegyung Jul 16, 2025
69c692a
feature(api): env 적용 및 상세페이지 api 추가
LeeTaegyung Jul 16, 2025
b5b79b0
feature(UserProfile): 상세페이지의 유저 프로필 컴포넌트 추가
LeeTaegyung Jul 16, 2025
a39afe7
feature(ProductInfo): 상세페이지 상단영역 컴포넌트
LeeTaegyung Jul 16, 2025
e9167d1
chore: gitignore 수정
LeeTaegyung Jul 16, 2025
1a8ae22
feature(ProductInfo): 상세페이지 하단영역 컴포넌트
LeeTaegyung Jul 16, 2025
5b605cb
feature(ProductDetailPage): 상품 상세페이지 추가
LeeTaegyung Jul 16, 2025
1ece595
refactor(AddItemPage): 공통 컴포넌트로 변경
LeeTaegyung Jul 17, 2025
b818fbf
chore: alias 추가
LeeTaegyung Jul 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

# misc
.DS_Store
.env
.env.local
.env.development.local
.env.test.local
Expand Down
14 changes: 14 additions & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin");

module.exports = {
plugins: [
{
plugin: {
overrideWebpackConfig: ({ webpackConfig }) => {
webpackConfig.resolve.plugins.push(new TsconfigPathsPlugin({}));
return webpackConfig;
},
},
},
],
};
Loading
Loading