diff --git a/docs/content/bridge/1.overview.md b/docs/content/bridge/1.overview.md index d5b9637754f..aec21984ba3 100644 --- a/docs/content/bridge/1.overview.md +++ b/docs/content/bridge/1.overview.md @@ -151,7 +151,7 @@ In case you need to extend options provided by `./.nuxt/tsconfig.json` further, ## Update Runtime Config -Nuxt 3 approaches runtime configs differently than Nuxt 2, using a new combined `runtimeConfig` option. +Nuxt 3 approaches runtime config differently than Nuxt 2, using a new combined `runtimeConfig` option. First, you'll need to combine your `publicRuntimeConfig` and `privateRuntimeConfig` properties into a new one called `runtimeConfig`, with the public config within a key called `public`. @@ -171,7 +171,7 @@ First, you'll need to combine your `publicRuntimeConfig` and `privateRuntimeConf + } ``` -This also means that when you need to access public runtime config, it's behind a property called `public`. If you use public runtime configs, you'll need to update your code. +This also means that when you need to access public runtime config, it's behind a property called `public`. If you use public runtime config, you'll need to update your code. ```diff // MyWidget.vue