Skip to content

Commit

Permalink
feat :: 패키지 수정 - next export
Browse files Browse the repository at this point in the history
  • Loading branch information
KANGYONGSU23 committed Oct 4, 2023
1 parent b8d69e5 commit 88c98c1
Show file tree
Hide file tree
Showing 4 changed files with 125 additions and 118 deletions.
126 changes: 65 additions & 61 deletions .pnp.cjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build": "next build && next export",
"start": "next start",
"lint": "next lint"
},
Expand All @@ -13,7 +13,7 @@
"@tanstack/react-query": "^4.33.0",
"axios": "^1.4.0",
"debug": "^4.3.4",
"next": "^13.4.19",
"next": "13.4.7",
"react": "^18.2.0",
"react-cookie": "6.1.0",
"react-dom": "18.2.0",
Expand All @@ -27,7 +27,7 @@
"@testing-library/jest-dom": "^5.16.5",
"@types/debug": "^4",
"@types/eslint": "^8",
"@types/node": "20.5.7",
"@types/node": "20.8.2",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@yarnpkg/sdks": "^3.0.0-rc.49",
Expand Down
6 changes: 3 additions & 3 deletions src/app/companies/[id]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
"use client";

import { GetCompaniesDetail } from "@/apis/companies";
import { usePathname, useRouter } from "next/navigation";
import { useToastStore } from "@team-return/design-system";
import CompanyTable from "@/components/company/CompanyTable";
import CompanyTitle from "@/components/company/CompanyTitle";
import { GetCompaniesDetail } from "@/apis/companies";
import { business_number_regex } from "@/util/regex";
import { useToastStore } from "@team-return/design-system";
import { usePathname, useRouter } from "next/navigation";

export default function CompanyDetialPage() {
const navigator = useRouter();
Expand Down
Loading

0 comments on commit 88c98c1

Please sign in to comment.