Remove unneeded note from README and delete unused Next.js configuration file to streamline project documentation and setup

This commit is contained in:
Bram Suurd
2024-11-01 19:35:54 +01:00
parent 76f78a6af1
commit 74436d8171
2 changed files with 0 additions and 24 deletions

View File

@@ -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;