mirror of
https://github.com/community-unscripted/Proxmox.git
synced 2026-08-25 02:14:58 -04:00
19 lines
292 B
JavaScript
19 lines
292 B
JavaScript
module.exports = {
|
|
webpack: (config) => {
|
|
config.resolve.alias.canvas = false;
|
|
|
|
return config;
|
|
},
|
|
images: {
|
|
remotePatterns: [
|
|
{
|
|
protocol: "https",
|
|
hostname: "**",
|
|
},
|
|
],
|
|
},
|
|
experimental: {
|
|
missingSuspenseWithCSRBailout: false,
|
|
},
|
|
};
|