From 8b336542e489054d44b7fc0631603b733412dafe Mon Sep 17 00:00:00 2001 From: KevinMidboe Date: Sun, 3 Mar 2019 22:22:15 +0100 Subject: [PATCH] Changed static url for images to leifsopplevelser from localhost --- src/components/Gallery.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Gallery.vue b/src/components/Gallery.vue index 430e52f..6c31693 100644 --- a/src/components/Gallery.vue +++ b/src/components/Gallery.vue @@ -58,7 +58,7 @@ export default { images.forEach(image => { this.gallery.push({ type: 'image', - url: 'http://localhost:5000/images/' + image.filename + url: 'https://leifsopplevelser.no/images/' + image.filename }) }) })