mirror of
https://github.com/run-llama/llama-slides.git
synced 2026-06-30 21:27:58 -04:00
10 lines
271 B
JavaScript
10 lines
271 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
|
|
outputFileTracingIncludes: { "/api/*": ["./node_modules/**/*.wasm"], }
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|