Logo.Ai / next.config.mjs
enzostvs's picture
enzostvs HF staff
initial commit
67ea2ab
raw
history blame
No virus
400 Bytes
/** @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;