mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 01:41:46 +00:00
11 lines
234 B
JavaScript
11 lines
234 B
JavaScript
module.exports = {
|
|
extends: ['next/core-web-vitals', 'prettier'],
|
|
ignorePatterns: ['**/.next/**', '**/node_modules/**'],
|
|
root: true,
|
|
settings: {
|
|
next: {
|
|
rootDir: ['basics/*/', 'dashboard/*/', 'seo/'],
|
|
},
|
|
},
|
|
};
|