* feat: add nextjs app router support * chore: rename nextjs page router demo * feat: support nextjs app router with example * chore(proxy): bump to 0.4.0 * chore: update package-lock.json * chore: remove formidable * chore: update package-lock.json * fix: page export * fix: type issues * fix: remove comment * fix: eslint any warning * chore: client version bump 0.4.2
32 lines
586 B
JSON
32 lines
586 B
JSON
{
|
|
"extends": [
|
|
"plugin:@nx/react-typescript",
|
|
"next",
|
|
"next/core-web-vitals",
|
|
"../../.eslintrc.json"
|
|
],
|
|
"ignorePatterns": ["!**/*", ".next/**/*"],
|
|
"overrides": [
|
|
{
|
|
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
|
|
"rules": {
|
|
"@next/next/no-html-link-for-pages": ["error", "apps/demo-app/pages"]
|
|
}
|
|
},
|
|
{
|
|
"files": ["*.ts", "*.tsx"],
|
|
"rules": {}
|
|
},
|
|
{
|
|
"files": ["*.js", "*.jsx"],
|
|
"rules": {}
|
|
}
|
|
],
|
|
"rules": {
|
|
"@next/next/no-html-link-for-pages": "off"
|
|
},
|
|
"env": {
|
|
"jest": true
|
|
}
|
|
}
|