2026-05-02 18:02:13 +02:00

36 lines
942 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/* =========================================================
FOOTBALL STATS API - MAIN PROCESS (ELECTRON)
---------------------------------------------------------
Ce fichier lance l'application desktop Electron.
========================================================= */
const { app, BrowserWindow } = require("electron");
const path = require("path");
/* =========================
CRÉATION DE LA FENÊTRE
========================= */
function createWindow () {
const win = new BrowserWindow({
width: 1200,
height: 800,
webPreferences: {
nodeIntegration: true, // permet dutiliser require dans le front
contextIsolation: false // simplifie le développement
}
});
// Chargement de l'interface principale
win.loadFile(path.join(__dirname, "index.html"));
}
/* =========================
LANCEMENT APPLICATION
========================= */
app.whenReady().then(createWindow);