Skip to content

Commit 08c8dac

Browse files
committed
Rebuild
1 parent 89f7822 commit 08c8dac

38 files changed

+6877
-1126
lines changed

.eslintrc.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["next/core-web-vitals", "next/typescript"]
3+
}

.gitignore

+15-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
# dependencies
44
/node_modules
55
/.pnp
6-
.pnp.js
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
712

813
# testing
914
/coverage
@@ -17,18 +22,19 @@
1722

1823
# misc
1924
.DS_Store
25+
*.pem
2026

2127
# debug
2228
npm-debug.log*
2329
yarn-debug.log*
2430
yarn-error.log*
2531

26-
# local env files
27-
.env
28-
.env.local
29-
.env.development.local
30-
.env.test.local
31-
.env.production.local
32+
# env files (can opt-in for committing if needed)
33+
.env*
3234

33-
# Local Netlify folder
34-
.netlify
35+
# vercel
36+
.vercel
37+
38+
# typescript
39+
*.tsbuildinfo
40+
next-env.d.ts

next.config.ts

+7
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)