Skip to content

Commit b3883a7

Browse files
committed
add nextjs edge
1 parent b746cd1 commit b3883a7

16 files changed

+6082
-0
lines changed

.eslintrc.json

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

.gitignore

+32
Original file line numberDiff line numberDiff line change
@@ -102,3 +102,35 @@ dist
102102

103103
# TernJS port file
104104
.tern-port
105+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
106+
107+
# dependencies
108+
/node_modules
109+
/.pnp
110+
.pnp.js
111+
112+
# testing
113+
/coverage
114+
115+
# next.js
116+
/.next/
117+
/out/
118+
119+
# production
120+
/build
121+
122+
# misc
123+
.DS_Store
124+
*.pem
125+
126+
# debug
127+
npm-debug.log*
128+
yarn-debug.log*
129+
yarn-error.log*
130+
.pnpm-debug.log*
131+
132+
# local env files
133+
.env*.local
134+
135+
# vercel
136+
.vercel

jsconfig.json

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./src/*"]
5+
}
6+
}
7+
}

next.config.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
reactStrictMode: true,
4+
}
5+
6+
module.exports = nextConfig

0 commit comments

Comments
 (0)