Skip to content

Commit

Permalink
terser
Browse files Browse the repository at this point in the history
  • Loading branch information
kaangiray26 committed Jun 27, 2023
1 parent b0f4c26 commit 951b2c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Discover.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import { onMounted, ref } from 'vue';
import { useRouter } from 'vue-router';
import Fuse from 'fuse.js';
import { list } from "https://cdn.jsdelivr.net/gh/kaangiray26/endless@latest/src/js/extractors.min.js"
import { list } from "https://kaangiray26.github.io/endless/src/js/extractors.min.js"
const router = useRouter();
const extractors = ref(list);
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Feed.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import { ref, onBeforeMount, onActivated } from 'vue';
import { useRouter } from 'vue-router';
import { CapacitorHttp } from '@capacitor/core';
import { extractors } from "https://cdn.jsdelivr.net/gh/kaangiray26/endless@latest/src/js/extractors.min.js"
import { extractors } from "https://kaangiray26.github.io/endless/src/js/extractors.min.js"
import Fuse from 'fuse.js';
import Post from '/components/SingleShortPost.vue';
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Post.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<script setup>
import { ref, onBeforeMount, onActivated } from 'vue';
import { useRouter } from 'vue-router';
import { extractors } from "/js/extractors.js";
import { extractors } from "https://kaangiray26.github.io/endless/src/js/extractors.min.js";
import Post from '/components/SinglePost.vue';
const router = useRouter();
Expand Down

0 comments on commit 951b2c3

Please sign in to comment.