diff --git a/assets/js/graph.js b/assets/js/graph.js
index c5829e9..db1cfe2 100644
--- a/assets/js/graph.js
+++ b/assets/js/graph.js
@@ -1,5 +1,4 @@
 async function drawGraph(
-  url,
   baseUrl,
   pathColors,
   depth,
@@ -10,7 +9,7 @@ async function drawGraph(
   const container = document.getElementById('graph-container')
 
   const { index, links, content } = await fetchData
-  const curPage = url.replace(baseUrl, '')
+  const curPage = window.location.href.replace(baseUrl, "").replace(/\/$/g, "")
 
   const parseIdsFromLinks = (links) => [
     ...new Set(links.flatMap((link) => [link.source, link.target])),
diff --git a/data/config.yaml b/data/config.yaml
index afa531c..2676ac2 100644
--- a/data/config.yaml
+++ b/data/config.yaml
@@ -3,7 +3,7 @@ enableToc: true
 openToc: false
 enableLinkPreview: true
 enableLatex: true
-enableSPA: false
+enableSPA: true
 description:
   Host your second brain and digital garden for free. Quartz features extremely fast full-text search,
   Wikilink support, backlinks, local graph, tags, and link previews.
diff --git a/layouts/partials/graph.html b/layouts/partials/graph.html
index b8b2f61..6bc77b6 100644
--- a/layouts/partials/graph.html
+++ b/layouts/partials/graph.html
@@ -18,7 +18,6 @@
 <script src="{{ $js.Permalink }}"></script>
 <script>
 drawGraph(
-  {{strings.TrimRight "/" .Page.Permalink}},
   {{strings.TrimRight "/" .Site.BaseURL}},
   {{$.Site.Data.graphConfig.paths}},
   {{$.Site.Data.graphConfig.depth}},
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 37938a5..93051cb 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -75,7 +75,6 @@
         container.textContent = "";
 
         drawGraph(
-          {{strings.TrimRight "/" .Page.Permalink}},
           {{strings.TrimRight "/" .Site.BaseURL}},
           {{$.Site.Data.graphConfig.paths}},
           {{$.Site.Data.graphConfig.depth}},