Skip to content
Snippets Groups Projects
Unverified Commit 534d5505 authored by Thuc Pham's avatar Thuc Pham Committed by GitHub
Browse files

fix: replicate deps warning in nextjs (#1370)

parent eb87b965
No related branches found
No related tags found
No related merge requests found
---
"llamaindex": patch
---
fix: replicate deps warning in nextjs
...@@ -24,7 +24,7 @@ export default function withLlamaIndex(config: any) { ...@@ -24,7 +24,7 @@ export default function withLlamaIndex(config: any) {
"@xenova/transformers", "@xenova/transformers",
); );
const userWebpack = config.webpack; const userWebpack = config.webpack;
config.webpack = function (webpackConfig: any) { config.webpack = function (webpackConfig: any, options: any) {
if (userWebpack) { if (userWebpack) {
webpackConfig = userWebpack(webpackConfig); webpackConfig = userWebpack(webpackConfig);
} }
...@@ -32,14 +32,26 @@ export default function withLlamaIndex(config: any) { ...@@ -32,14 +32,26 @@ export default function withLlamaIndex(config: any) {
...webpackConfig.resolve.alias, ...webpackConfig.resolve.alias,
"@google-cloud/vertexai": false, "@google-cloud/vertexai": false,
}; };
// Disable modules that are not supported in vercel edge runtime
if (options?.nextRuntime === "edge") {
webpackConfig.resolve.alias["replicate"] = false;
}
// Following lines will fix issues with onnxruntime-node when using pnpm // Following lines will fix issues with onnxruntime-node when using pnpm
// See: https://github.com/vercel/next.js/issues/43433 // See: https://github.com/vercel/next.js/issues/43433
webpackConfig.externals.push({ const externals: Record<string, string> = {
"onnxruntime-node": "commonjs onnxruntime-node", "onnxruntime-node": "commonjs onnxruntime-node",
sharp: "commonjs sharp", sharp: "commonjs sharp",
chromadb: "commonjs chromadb", chromadb: "chromadb",
unpdf: "commonjs unpdf", unpdf: "unpdf",
}); };
if (options?.nextRuntime === "nodejs") {
externals.replicate = "commonjs replicate";
}
webpackConfig.externals.push(externals);
return webpackConfig; return webpackConfig;
}; };
return config; return config;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment