-
-
-
diff --git a/src/pages/Settings.vue b/src/pages/Settings.vue
index d3c153df1..f3c6b7765 100644
--- a/src/pages/Settings.vue
+++ b/src/pages/Settings.vue
@@ -116,12 +116,6 @@ export default {
backup: {
title: this.$t("Backup"),
},
- /*
- Hidden for now: Unfortunately, after some test, I found that Playwright requires a lot of libraries to be installed on the Linux host in order to start Chrome or Firefox.
- It will be hard to install, so I hide this feature for now. But it still accessible via URL: /settings/plugins.
- plugins: {
- title: this.$tc("plugin", 2),
- },*/
about: {
title: this.$t("About"),
},
diff --git a/src/router.js b/src/router.js
index 4d5293b8e..a8644805e 100644
--- a/src/router.js
+++ b/src/router.js
@@ -19,7 +19,6 @@ import DockerHosts from "./components/settings/Docker.vue";
import MaintenanceDetails from "./pages/MaintenanceDetails.vue";
import ManageMaintenance from "./pages/ManageMaintenance.vue";
import APIKeys from "./components/settings/APIKeys.vue";
-import Plugins from "./components/settings/Plugins.vue";
// Settings - Sub Pages
import Appearance from "./components/settings/Appearance.vue";
@@ -130,10 +129,6 @@ const routes = [
path: "backup",
component: Backup,
},
- {
- path: "plugins",
- component: Plugins,
- },
{
path: "about",
component: About,