Spaces:
Running
Running
File size: 405 Bytes
b162b24 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
// Ignore node-specific modules when bundling for the browser
// See https://webpack.js.org/configuration/resolve/#resolvealias
config.resolve.alias = {
...config.resolve.alias,
"sharp$": false,
"onnxruntime-node$": false,
}
return config;
},
};
export default nextConfig;
|