diff --git a/src/views/Blog.vue b/src/views/Blog.vue index e73b69ef..85edc517 100644 --- a/src/views/Blog.vue +++ b/src/views/Blog.vue @@ -2,9 +2,9 @@
@@ -73,16 +74,6 @@ export default class Blog extends Vue { } } - proxyImage(image: string) { - if (!image) return ''; - - // Yeet the domain - const imgPath = image.replace("http://", "https://").replace('https://ghost.ftb.team/content/images/', ''); - const encodedPath = encodeURIComponent(imgPath); - - return `${constants.metaApi}/v1/blog/image/${encodedPath}` - } - get domain() { return constants.ftbDomain }