Skip to content
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

상세페이지 개발중 rsc 관련 #2

Merged
merged 36 commits into from
Aug 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
6b86e35
feat: add image
eun-hak Jul 30, 2024
0db8704
feat: scrollbar-hide
eun-hak Jul 30, 2024
cf68ca3
fix: mocking setting
eun-hak Jul 30, 2024
4311eb0
feat: add content Filter
eun-hak Jul 31, 2024
4fc37ed
feat: add image
eun-hak Jul 31, 2024
f493d2a
feat: add Swiper
eun-hak Jul 31, 2024
df2034e
feat: Dividend swiper
eun-hak Aug 8, 2024
c4c2b71
fix: Container width fix
eun-hak Aug 8, 2024
bf31761
setting: swc
eun-hak Aug 8, 2024
4fa2e1d
fix: container fix
eun-hak Aug 8, 2024
8c0af5d
Merge branch 'main' into feat/productpage
eun-hak Aug 8, 2024
70be119
feat: Product UI update
eun-hak Aug 9, 2024
a61d37b
feat: Report UI Update
eun-hak Aug 10, 2024
1a34adb
feat: ProductSort UI update
eun-hak Aug 10, 2024
cbba7b7
fix : image 형식 변경
eun-hak Aug 12, 2024
846ffa7
feat: add FormatData
eun-hak Aug 14, 2024
7dc7843
feat: add Detail Nav UI
eun-hak Aug 14, 2024
2abdfe3
feat: add Detail Public UI
eun-hak Aug 14, 2024
b034988
feat: add Images
eun-hak Aug 14, 2024
3e16510
feat: Report UI
eun-hak Aug 15, 2024
677998b
feat: News UI
eun-hak Aug 15, 2024
a2e0d9b
feat: Add Chart
eun-hak Aug 16, 2024
9b6926b
feat: add KaKaoMap
eun-hak Aug 17, 2024
300b29d
feat: add Product UI
eun-hak Aug 17, 2024
3adcd4c
feat: chart package add
eun-hak Aug 19, 2024
7240c56
feat: add copyrightchart
eun-hak Aug 19, 2024
df359d6
feat: add populationInformationChart
eun-hak Aug 19, 2024
ebaad34
feat: StockPriceChart
eun-hak Aug 19, 2024
9627088
fix: fixing Product page UI
eun-hak Aug 19, 2024
3bdc588
feat: add Dividend type + api
eun-hak Aug 19, 2024
7b9ae5a
fix: eslint
eun-hak Aug 19, 2024
c49086a
Merge branch 'main' into feat/productpage
eun-hak Aug 19, 2024
5c7a49b
fix CI
eun-hak Aug 19, 2024
960318b
Merge branch 'feat/productpage' of https://github.com/Moaguide-develo…
eun-hak Aug 19, 2024
7cbb136
의존성 충돌 fix
eun-hak Aug 19, 2024
cd989e9
fix : lint fix
eun-hak Aug 19, 2024
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
20 changes: 11 additions & 9 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,19 @@
"plugins": ["react", "react-refresh"],
"rules": {
"@next/next/no-img-element": "off",
"@typescript-eslint/no-explicit-any": "off",
"react-refresh/only-export-components": [
"warn",

{
"allowConstantExport": true
}
],
"@typescript-eslint/no-explicit-any": "off",



"no-unused-vars": "off",

"@typescript-eslint/no-unused-vars": "off",

"react-hooks/rules-of-hooks": "off",

"react-refresh/only-export-components": "off"

"no-unused-vars": "off",
"react/jsx-pascal-case": "warn"
}


Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '20'
- run: npm install
- run: npm run lint
- run: yarn
- run: yarn lint

build:
name: Build
Expand All @@ -40,5 +40,5 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: '20'
- run: npm install
- run: CI='false' npm run build
- run: yarn
- run: CI='false' yarn build
4 changes: 4 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
const nextConfig = {
experimental: { instrumentationHook: true },
reactStrictMode: true,
swcMinify: true,
compiler: {
styledComponents: true
},
webpack: (config, { isServer }) => {
if (isServer) {
if (Array.isArray(config.resolve.alias))
Expand Down
Loading
Loading