diff --git a/build/AnalyzeDeps/InterdependencyGraph.html b/build/AnalyzeDeps/InterdependencyGraph.html
index 84e90bad61..28b02f3977 100644
--- a/build/AnalyzeDeps/InterdependencyGraph.html
+++ b/build/AnalyzeDeps/InterdependencyGraph.html
@@ -343,7 +343,9 @@
Bot Framework Interdependencies
const params = new URLSearchParams(window.location.search);
const src = params.get("data") || "data.js";
const script = document.createElement("script");
- script.src = src;
+ const url = window.location.href.split('?')[0];
+ const path = url.substr(0, url.lastIndexOf('/'));
+ script.src = path.concat('/', src);
script.async = false;
script.addEventListener("load", () => renderGraph(data));
script.addEventListener("error", e => {