hey bro,it already works well for me
the problem is that you are working with typescript with Strapi and that doesn’t work for me, however I am work it without typescript so i was looking for solutions and chatgpt helped me so much , this code worked for me in the server.js — >>
const strapi = require(‘@strapi/strapi’);
const app = strapi.createStrapi({
autoReload: false, // Desactiva la recarga automática
serveAdminPanel: true, // Habilita el panel de administración
});
app.start();