Les routes et les contrôleurs backend pour l'inscription, la connexion et la déconnexion des utilisateurs
This commit is contained in:
parent
37ffb163d7
commit
f4ab9b3d15
52 changed files with 10487 additions and 0 deletions
16
frontend/eslint.config.mjs
Normal file
16
frontend/eslint.config.mjs
Normal file
|
@ -0,0 +1,16 @@
|
|||
import { dirname } from "path";
|
||||
import { fileURLToPath } from "url";
|
||||
import { FlatCompat } from "@eslint/eslintrc";
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
const __dirname = dirname(__filename);
|
||||
|
||||
const compat = new FlatCompat({
|
||||
baseDirectory: __dirname,
|
||||
});
|
||||
|
||||
const eslintConfig = [
|
||||
...compat.extends("next/core-web-vitals", "next/typescript"),
|
||||
];
|
||||
|
||||
export default eslintConfig;
|
Loading…
Add table
Add a link
Reference in a new issue