I had an issue in nextjs, with the node canvas, to save you time i found this workaround:
add this to your next config
webpack: ( config, { buildId, dev, isServer, defaultLoaders, nextRuntime, webpack } ) => { config.externals.push({ canvas: 'commonjs canvas' }) return config },
I had an issue in nextjs, with the node canvas, to save you time i found this workaround: add this to your next config
webpack: ( config, { buildId, dev, isServer, defaultLoaders, nextRuntime, webpack } ) => { config.externals.push({ canvas: 'commonjs canvas' }) return config },