From a6a249284259629f4fff31f9d4dbb25026ceba80 Mon Sep 17 00:00:00 2001 From: dakerboul Date: Mon, 10 Mar 2025 16:01:47 +0100 Subject: [PATCH] =?UTF-8?q?Ajouter=20la=20biblioth=C3=A8que=20sharp=20pour?= =?UTF-8?q?=20le=20traitement=20d'images?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server.js b/server.js index 5987951..9eaedcd 100644 --- a/server.js +++ b/server.js @@ -1,6 +1,7 @@ // server.js const express = require('express'); const cors = require('cors'); +const sharp = require('sharp'); const app = express(); const port = 3000;