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

Commit 68f3ceb

Browse files
committed
Add Next.js configuration
1 parent 74436d8 commit 68f3ceb

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

next.config.mjs

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
webpack: (config) => {
4+
config.resolve.alias.canvas = false;
5+
6+
return config;
7+
},
8+
images: {
9+
remotePatterns: [
10+
{
11+
protocol: "https",
12+
hostname: "**",
13+
},
14+
],
15+
},
16+
17+
output: "export",
18+
// basePath: "/proxmox-helper-scripts",
19+
};
20+
21+
export default nextConfig;

0 commit comments

Comments
 (0)