next-arch-map 0.1.13 → 0.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-arch-map",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "description": "Static analyzer that builds a multi-layer architecture graph for Next.js-style apps.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -98,7 +98,7 @@ function buildEdgeKey(from: string, to: string, kind: EdgeKind): string {
98
98
  export function App() {
99
99
  const [graph, setGraph] = useState<Graph | null>(null);
100
100
  const [graphDiff, setGraphDiff] = useState<GraphDiff | null>(null);
101
- const [useServer, setUseServer] = useState(false);
101
+ const [useServer, setUseServer] = useState(true);
102
102
  const [serverUrl, setServerUrl] = useState("http://localhost:4321");
103
103
  const [focusedPageRoute, setFocusedPageRoute] = useState<string | null>(null);
104
104
  const [queryRoute, setQueryRoute] = useState("/dashboard");