aboutsummaryrefslogtreecommitdiff
path: root/src/html/index.html
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2019-02-01 13:02:50 -0500
committerMark Powers <markppowers0@gmail.com>2019-02-01 13:02:50 -0500
commitd1162d1bd12cbb3eae9889768adbbb293852c066 (patch)
treeb58fbf57426c9d789df088863991b7c106b08b7c /src/html/index.html
parent80ee170990e78753d07779d59bdfe516c399d254 (diff)
Remove /photo/ to uploads folder
Diffstat (limited to 'src/html/index.html')
-rw-r--r--src/html/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/index.html b/src/html/index.html
index 7a1d5d5..c7e398b 100644
--- a/src/html/index.html
+++ b/src/html/index.html
@@ -18,7 +18,7 @@
posts: []
},
created() {
- fetch(new Request('/index/posts.json')).then(response => response.json())
+ fetch(new Request('/posts/index')).then(response => response.json())
.then(response => this.posts = response.data);
}
});