next_js_test_space / next.config.js
vivasvan100's picture
init
22eddc2
raw
history blame contribute delete
475 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
// (Optional) Export as a standalone site
// See https://nextjs.org/docs/pages/api-reference/next-config-js/output#automatically-copying-traced-files
output: "standalone", // Feel free to modify/remove this option
// Indicate that these packages should not be bundled by webpack
experimental: {
serverComponentsExternalPackages: ["sharp", "onnxruntime-node"],
},
};
module.exports = nextConfig;