fix: update import paths for components and utilities to relative paths

This commit is contained in:
2025-10-17 22:41:52 +02:00
parent 02643e3702
commit 337b07f3c5
33 changed files with 3050 additions and 70 deletions

View File

@@ -1,5 +1,6 @@
const { PrismaClient } = require('@prisma/client');
const bcrypt = require('bcryptjs');
const { v4: uuidv4 } = require('uuid');
const prisma = new PrismaClient();
@@ -12,6 +13,7 @@ async function main() {
email: 'test@test.fr',
password: hashedPassword,
role: 'SUPER_ADMIN',
id: uuidv4(), // Ajout d'un identifiant unique
},
});
console.log('Super admin created');