Skip to content
Snippets Groups Projects
Unverified Commit 5fb64b74 authored by Marcus Schiesser's avatar Marcus Schiesser Committed by GitHub
Browse files

fix: aws4 warning (#51)

parent e4665b6c
No related branches found
No related tags found
No related merge requests found
......@@ -6,5 +6,8 @@ export default function webpack(config) {
sharp$: false,
"onnxruntime-node$": false,
};
config.resolve.fallback = {
aws4: false,
};
return config;
}
......@@ -5,6 +5,9 @@ export default function webpack(config, isServer) {
sharp$: false,
"onnxruntime-node$": false,
};
config.resolve.fallback = {
aws4: false,
};
config.module.rules.push({
test: /\.node$/,
loader: "node-loader",
......
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