2024-11-04 23:55:08 +01:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
|
const nextConfig = {
|
|
|
|
|
webpack: (config) => {
|
|
|
|
|
config.resolve.alias.canvas = false;
|
|
|
|
|
|
|
|
|
|
return config;
|
|
|
|
|
},
|
|
|
|
|
images: {
|
|
|
|
|
remotePatterns: [
|
|
|
|
|
{
|
|
|
|
|
protocol: "https",
|
|
|
|
|
hostname: "**",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
|
2024-11-05 00:14:19 +01:00
|
|
|
env: {
|
2024-11-05 00:17:17 +01:00
|
|
|
NEXT_PUBLIC_BUILD_TIME: `${Date.now()}`,
|
2024-11-05 00:14:19 +01:00
|
|
|
},
|
|
|
|
|
|
2024-11-04 23:55:08 +01:00
|
|
|
output: "export",
|
2024-11-05 00:08:58 +01:00
|
|
|
basePath: "/ProxmoxVE",
|
2024-11-04 23:55:08 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default nextConfig;
|