Skip to content
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
8 changes: 8 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Ignore configs and build folders
postcss.config.js
postcss.config.mjs
tailwind.config.js
next.config.js
node_modules
dist
build
10 changes: 9 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
{
"extends": "next/core-web-vitals"
"extends": ["next", "next/core-web-vitals"],
"overrides": [
{
"files": ["postcss.config.*", "tailwind.config.*"],
"rules": {
"no-undef": "off"
}
}
]
}
3 changes: 1 addition & 2 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
reactCompiler: true,
ppr: 'incremental'
cacheComponents: true, // replaces ppr
},
};

Expand Down
Loading