From 74436d8171d65a60ee69545d9135d80d959b52ed Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Fri, 1 Nov 2024 19:35:54 +0100 Subject: [PATCH] Remove unneeded note from README and delete unused Next.js configuration file to streamline project documentation and setup --- README.md | 3 --- next.config.mjs | 21 --------------------- 2 files changed, 24 deletions(-) delete mode 100644 next.config.mjs diff --git a/README.md b/README.md index 1ce7bb7..d7b8970 100644 --- a/README.md +++ b/README.md @@ -13,9 +13,6 @@ > [!WARNING] > always check the source code of the scripts before running them. Copying random scripts without understanding what they do can lead to data loss or other security issues. -> [!NOTE] -> This website is not affiliated with the Proxmox VE Helper Scripts repository. This website is simply a redesign of the original website, with a focus on readability and security. - ## 👀 Why even use the Re-design? ### Overview diff --git a/next.config.mjs b/next.config.mjs deleted file mode 100644 index 6078b15..0000000 --- a/next.config.mjs +++ /dev/null @@ -1,21 +0,0 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = { - webpack: (config) => { - config.resolve.alias.canvas = false; - - return config; - }, - images: { - remotePatterns: [ - { - protocol: "https", - hostname: "**", - }, - ], - }, - - output: "export", - // basePath: "/proxmox-helper-scripts", -}; - -export default nextConfig;