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

chore: migrate next to app router #32

Open
wants to merge 18 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
38 changes: 0 additions & 38 deletions components/common/Error/index.tsx

This file was deleted.

4 changes: 0 additions & 4 deletions components/common/Layout/Layout.type.ts

This file was deleted.

23 changes: 0 additions & 23 deletions components/common/Layout/index.tsx

This file was deleted.

34 changes: 0 additions & 34 deletions components/common/Loading.tsx

This file was deleted.

80 changes: 0 additions & 80 deletions components/common/RefreshButton/index.tsx

This file was deleted.

39 changes: 0 additions & 39 deletions components/common/Table/TableBody.tsx

This file was deleted.

8 changes: 0 additions & 8 deletions components/search/Result/Result.type.ts

This file was deleted.

14 changes: 7 additions & 7 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
};

module.exports = nextConfig;
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
swcMinify: true,
};
module.exports = nextConfig;
16 changes: 7 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix --quiet .",
"lint": "next lint",
"prettier": "prettier --write",
"prepare": "husky install",
"build:icons": "svgr svgs/resources/ --config-file svgs/configs/.svgrrc.default.cjs && prettier -w ./components/icons"
Expand All @@ -15,6 +15,7 @@
"@artsy/fresnel": "^7.1.3",
"@lingui/react": "^4.11.4",
"@rango-dev/charts": "^0.2.1-next.5",
"@next/third-parties": "^14.2.15",
"@react-spring/web": "^9.5.5",
"@svgr/babel-plugin-remove-jsx-attribute": "^8.0.0",
"@svgr/cli": "^8.1.0",
Expand All @@ -24,15 +25,12 @@
"chart.js": "4.2.1",
"chartjs-chart-sankey": "^0.12.1",
"dayjs": "^1.11.6",
"eslint-config-next": "^13.0.4",
"is-mobile": "^3.1.1",
"next": "^13.0.4",
"nextjs-progressbar": "^0.0.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.1",
"sass": "^1.57.0",
"swr": "^1.3.0"
"next": "^14.2.11",
"nextjs-toploader": "^3.7.15",
"react": "^18.3.1",
"react-dom": "^18.3.1",
nikaaru marked this conversation as resolved.
Show resolved Hide resolved
"sass": "^1.57.0"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.7",
Expand Down
35 changes: 0 additions & 35 deletions pages/404.tsx

This file was deleted.

17 changes: 0 additions & 17 deletions pages/_app.tsx

This file was deleted.

Loading
Loading