ospfcost/next.config.js
Gert-Jan Aalderink 607add2a7b Initial Entry
2025-07-09 21:33:13 +02:00

12 lines
291 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
esmExternals: 'loose'
},
webpack: (config) => {
config.externals = [...config.externals, { canvas: "canvas" }]; // required to make pdfjs work
return config;
},
};
module.exports = nextConfig;