From ce7467546f5f9283a5873e924d16e0eba30c01fa Mon Sep 17 00:00:00 2001 From: SinusFox Date: Mon, 14 Oct 2024 20:25:46 +0000 Subject: [PATCH] Update next.config.mjs --- next.config.mjs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/next.config.mjs b/next.config.mjs index 770f839..6d1bb7f 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -3,15 +3,16 @@ */ const nextConfig = { output: 'export', - + // Optional: Change links `/me` -> `/me/` and emit `/me.html` -> `/me/index.html` // trailingSlash: true, - + // Optional: Prevent automatic `/me` -> `/me/`, instead preserve `href` // skipTrailingSlashRedirect: true, - + // Optional: Change the output directory `out` -> `dist` // distDir: 'dist', -} - -module.exports = nextConfig +}; + +// Exportiere die Konfiguration mit der ES-Module-Syntax +export default nextConfig; -- 2.52.0