mirror of
https://github.com/community-scripts/Proxmox.git
synced 2026-02-04 12:44:44 -06: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,
|
|
},
|
|
};
|