Skip to content

Commit 4418d08

Browse files
committed
chore: update nextjs to 15
1 parent ab5d8c3 commit 4418d08

File tree

17 files changed

+1437
-1162
lines changed

17 files changed

+1437
-1162
lines changed

.eslintrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"extends": "next/core-web-vitals"
2+
"extends": ["next/core-web-vitals", "next/typescript"]
33
}

.gitignore

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,12 @@
33
# dependencies
44
/node_modules
55
/.pnp
6-
.pnp.js
7-
.yarn/install-state.gz
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
812

913
# testing
1014
/coverage
@@ -25,8 +29,8 @@ npm-debug.log*
2529
yarn-debug.log*
2630
yarn-error.log*
2731

28-
# local env files
29-
.env*.local
32+
# env files (can opt-in for commiting if needed)
33+
.env*
3034

3135
# typescript
3236
*.tsbuildinfo

next.config.mjs

Lines changed: 0 additions & 4 deletions
This file was deleted.

next.config.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
import type { NextConfig } from "next";
2+
3+
const nextConfig: NextConfig = {
4+
/* config options here */
5+
};
6+
7+
export default nextConfig;

0 commit comments

Comments
 (0)