-
+
@@ -43,13 +38,6 @@ provide('navigation', navigation);
-
-
-
-
diff --git a/nuxt.config.ts b/nuxt.config.ts
index fa6c3ac..59ee3c6 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -33,7 +33,6 @@ export default defineNuxtConfig({
},
},
routeRules: {
- '/api/search.json': { prerender: true },
'*-surround': { robots: false },
'/*/*-surround': { robots: false },
'/tutorials/*/_dir': { robots: false },
diff --git a/package.json b/package.json
index a6b3e86..e82b53e 100644
--- a/package.json
+++ b/package.json
@@ -20,7 +20,10 @@
"release": "semantic-release"
},
"dependencies": {
- "@matterlabs/docs-nuxt-template": "2.8.2",
+ "@matterlabs/docs-nuxt-template": "2.8.4",
+ "@iconify-json/heroicons": "^1.2.0",
+ "@iconify-json/simple-icons": "^1.2.1",
+ "@iconify-json/vscode-icons": "^1.2.0",
"@nuxt/content": "^2.13.2",
"@nuxt/eslint": "^0.5.5",
"@nuxt/fonts": "^0.7.2",
diff --git a/server/api/search.json.get.ts b/server/api/search.json.get.ts
deleted file mode 100644
index 2030727..0000000
--- a/server/api/search.json.get.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import { serverQueryContent } from '#content/server';
-
-export default eventHandler(async (event) => {
- return serverQueryContent(event)
- .where({ _type: 'markdown', navigation: { $ne: false }, _partial: false })
- .find();
-});