+
@@ -17,9 +17,9 @@ export default {
diff --git a/src/.vuepress/config.js b/src/.vuepress/config.js
index 677ad391..94f5ef1c 100644
--- a/src/.vuepress/config.js
+++ b/src/.vuepress/config.js
@@ -7,9 +7,7 @@ module.exports = {
['link', { rel: "preconnect", href: 'https://fonts.gstatic.com', crossorigin:""} , ''],
['link', { rel: "stylesheet", href: 'https://cdn.materialdesignicons.com/4.4.95/css/materialdesignicons.min.css', crossorigin:""} , ''],
['link', { rel: "stylesheet", href: 'https://fonts.googleapis.com/css?family=Open+Sans'} , ''],
- ['link', { rel: "stylesheet", href: 'https://fonts.googleapis.com/icon?family=Material+Icons'} , ''],
- ['script', { src: 'https://unpkg.com/flickity@2/dist/flickity.pkgd.min.js'} , ''],
- ['link', { rel: "stylesheet", type: "text/css", href: 'https://unpkg.com/flickity@2/dist/flickity.min.css'} , ''],
+ ['link', { rel: "stylesheet", href: 'https://fonts.googleapis.com/icon?family=Material+Icons'} , '']
],
themeConfig: {
repo: 'inorichi/tachiyomi',
diff --git a/src/.vuepress/enhanceApp.js b/src/.vuepress/enhanceApp.js
index 6ae74df1..7915bffd 100644
--- a/src/.vuepress/enhanceApp.js
+++ b/src/.vuepress/enhanceApp.js
@@ -3,6 +3,7 @@ import './styles/index.scss';
import { library } from '@fortawesome/fontawesome-svg-core';
import { faDownload } from '@fortawesome/free-solid-svg-icons';
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
+import { VueAgile } from 'vue-agile'
library.add(faDownload);
@@ -13,4 +14,5 @@ export default ({
siteData // site metadata
}) => {
Vue.component('font-awesome-icon', FontAwesomeIcon);
+ Vue.component('agile', VueAgile)
};