We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a4daccc commit 9e8b99bCopy full SHA for 9e8b99b
1 file changed
understand-anything-plugin/packages/dashboard/vite.config.ts
@@ -44,6 +44,7 @@ export default defineConfig({
44
const pathname = url.pathname;
45
const isProtectedEndpoint =
46
pathname === "/knowledge-graph.json" ||
47
+ pathname === "/domain-graph.json" ||
48
pathname === "/diff-overlay.json" ||
49
pathname === "/meta.json";
50
@@ -66,6 +67,8 @@ export default defineConfig({
66
67
? "diff-overlay.json"
68
: pathname === "/meta.json"
69
? "meta.json"
70
+ : pathname === "/domain-graph.json"
71
+ ? "domain-graph.json"
72
: "knowledge-graph.json";
73
74
const graphDir = process.env.GRAPH_DIR;
0 commit comments