mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 20:22:18 +00:00
13 lines
241 B
JavaScript
Executable File
13 lines
241 B
JavaScript
Executable File
module.exports = {
|
|
extends: ["next/babel", "next/core-web-vitals"],
|
|
ignorePatterns: ["external/**/*.ts"],
|
|
rules: {
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
},
|
|
settings: {
|
|
react: {
|
|
version: "detect",
|
|
},
|
|
},
|
|
};
|