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,
|
|
},
|
|
};
|