From 6624b879cbe66542e68c323335b8769d3161f145 Mon Sep 17 00:00:00 2001 From: ISA Date: Mon, 21 Oct 2024 14:47:03 +0200 Subject: [PATCH] =?UTF-8?q?K=C3=9C=20Einstellungsmodal=20alle=20Schalter?= =?UTF-8?q?=20in=20Littwin-Blau=20und=20modulName=20in=20Kabelbezeichnung?= =?UTF-8?q?=20unbenennt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/Navigation.jsx | 2 +- components/modales/KueModal.jsx | 6 +++--- next.config.mjs | 5 +++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/components/Navigation.jsx b/components/Navigation.jsx index b7a53c9..42d62e4 100644 --- a/components/Navigation.jsx +++ b/components/Navigation.jsx @@ -15,7 +15,7 @@ function Navigation() { const menuItems = [ { name: "Übersicht", path: "/dashboard.html" }, - { name: "Kabelüberwachung", path: "/kabelueberwachung.html" }, + { name: "Kabelüberwachung", path: "/kabelueberwachung" }, //{ name: "Zutrittskontrolle", path: "/access" }, //{ name: "Ein- und Ausgänge", path: "/einausgaenge" }, //{ name: "Analoge Eingänge", path: "/analogeEingaenge" }, diff --git a/components/modales/KueModal.jsx b/components/modales/KueModal.jsx index 6b86ac5..e8cfd53 100644 --- a/components/modales/KueModal.jsx +++ b/components/modales/KueModal.jsx @@ -199,7 +199,7 @@ function KueModal({ showModal, onClose, slot, onModulNameChange }) { */}
- + diff --git a/next.config.mjs b/next.config.mjs index 0448bad..531b8ed 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,9 +1,10 @@ /** @type {import('next').NextConfig} */ const nextConfig = { reactStrictMode: true, - output: "export", // Stellt den statischen Export sicher + output: "export", + trailingSlash: false, images: { - unoptimized: true, // Deaktiviert Bildoptimierung für den Export + unoptimized: true, }, };