Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
Add Next.js configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
BramSuurdje committed Nov 1, 2024
1 parent 74436d8 commit 68f3ceb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
/** @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;

0 comments on commit 68f3ceb

Please sign in to comment.