From 395fd6b556b2b9f5876726e9ed6a295c06af96ce Mon Sep 17 00:00:00 2001 From: Strift Date: Sat, 25 May 2024 09:43:00 +0200 Subject: [PATCH] Fix README syntax highlighting.md (#125) --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1a4824d..8602970 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,9 @@ pnpm add nuxt-meilisearch Then, update your `nuxt.config.ts`: - ```ts{}[nuxt.config.ts] + ```ts +// nuxt.config.ts + export default defineNuxtConfig({ modules: [ 'nuxt-meilisearch' @@ -60,7 +62,7 @@ export default defineNuxtConfig({ This example performs a search in the `books` index: -```html{}[pages/index.vue] +```html