Skip to content

Commit ccd7145

Browse files
committed
First
1 parent bc990d0 commit ccd7145

21 files changed

+1337
-494
lines changed

.eslintrc.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": "next/core-web-vitals"
3-
}
2+
"extends": [
3+
"@rocketseat/eslint-config/react",
4+
"next/core-web-vitals"
5+
]
6+
}

README.md

-38
This file was deleted.

next.config.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
reactStrictMode: true,
4+
swcMinify: true,
5+
pageExtensions: ['page.tsx', 'api.ts', 'api.tsx'],
46
}
57

68
module.exports = nextConfig

0 commit comments

Comments
 (0)