From f14f3815ff57fdaabb639d52dde71d8721089200 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Mon, 30 Jan 2023 11:13:28 +0000 Subject: [PATCH] docs: fix array syntax --- docs/7.migration/2.configuration.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/7.migration/2.configuration.md b/docs/7.migration/2.configuration.md index a1140dc59e..1b84d900e8 100644 --- a/docs/7.migration/2.configuration.md +++ b/docs/7.migration/2.configuration.md @@ -81,10 +81,10 @@ Nuxt and Nuxt Modules are now build-time-only. ```diff export default defineNuxtConfig({ - modules: { + modules: [ - '~/modules/my-module' + '~/modules/my-module/index' - } + ] }) ```