mirror of
https://github.com/run-llama/newsletter-generator.git
synced 2026-06-30 22:07:56 -04:00
11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
import CopyWebpackPlugin from 'copy-webpack-plugin';
|
|
|
|
const nextConfig = {
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['sharp', 'onnxruntime-node'],
|
|
outputFileTracingIncludes: { "/api/*": ["./node_modules/**/*.wasm"], }
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|