mirror of
https://github.com/community-scripts/Proxmox.git
synced 2026-02-03 19:47:30 -06:00
26 lines
421 B
JavaScript
26 lines
421 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
webpack: (config) => {
|
|
config.resolve.alias.canvas = false;
|
|
|
|
return config;
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**",
|
|
},
|
|
],
|
|
},
|
|
|
|
env: {
|
|
NEXT_PUBLIC_BUILD_TIME: `${Date.now()}`,
|
|
},
|
|
|
|
output: "export",
|
|
// basePath: "/proxmox-helper-scripts",
|
|
};
|
|
|
|
export default nextConfig;
|