Skip to content

Commit

Permalink
Merge pull request #2 from Moaguide-develop/feat/productpage
Browse files Browse the repository at this point in the history
상세페이지 개발중 rsc 관련
  • Loading branch information
eun-hak authored Aug 19, 2024
2 parents 9272c0c + cd989e9 commit 7f3abd8
Show file tree
Hide file tree
Showing 59 changed files with 3,999 additions and 12,706 deletions.
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

0 comments on commit 7f3abd8

Please sign in to comment.