mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 09:54:00 +00:00
12 lines
227 B
JavaScript
12 lines
227 B
JavaScript
module.exports = {
|
|
extends: ["next", "turbo", "prettier"],
|
|
rules: {
|
|
"@next/next/no-html-link-for-pages": "off",
|
|
},
|
|
parserOptions: {
|
|
babelOptions: {
|
|
presets: [require.resolve("next/babel")],
|
|
},
|
|
},
|
|
};
|