diff --git a/packages/core/docs/README.md b/packages/core/docs/README.md index 4d5cacdfea..cecc1a4cb8 100644 --- a/packages/core/docs/README.md +++ b/packages/core/docs/README.md @@ -45,7 +45,7 @@ By some estimates, up to 1% of users will leave your website for every 100ms of ### Extensibility -Our list of supported and planned integrations on the [Integrations](./integrations) page gets longer every month. Additionally, there are hundreds of Nuxt modules you can use. You can browse them on the [Nuxt Modules](https://modules.nuxtjs.org/) website and [Awesome Nuxt](https://github.com/nuxt-community/awesome-nuxt) repository. +Our list of supported and planned integrations on the [Integrations](/integrations/) page gets longer every month. Additionally, there are hundreds of Nuxt modules you can use. You can browse them on the [Nuxt Modules](https://modules.nuxtjs.org/) website and [Awesome Nuxt](https://github.com/nuxt-community/awesome-nuxt) repository. ## Tech stack diff --git a/packages/core/docs/composition/extending-graphql-queries.md b/packages/core/docs/composition/extending-graphql-queries.md index adf93a2ce8..7a90d20928 100644 --- a/packages/core/docs/composition/extending-graphql-queries.md +++ b/packages/core/docs/composition/extending-graphql-queries.md @@ -12,7 +12,7 @@ Custom queries allow you to modify or even entirely replace the default GraphQL ### Step 1: Check if the method is extendable -Go to the documentation of the [e-commerce integration](/integrations) of your choice. Look for the page describing the composable, then the section for the method you want to override, and see if it mentions `customQuery`. If it does, you can override it. +Go to the documentation of the [e-commerce integration](/integrations/) of your choice. Look for the page describing the composable, then the section for the method you want to override, and see if it mentions `customQuery`. If it does, you can override it. If the method doesn't support extending, you can instead replace the whole API endpoint called by it using the `extendApiMethod` described on the [Extending integrations](/integrate/extending-integrations.html) page. diff --git a/packages/core/docs/general/enterprise.md b/packages/core/docs/general/enterprise.md index d2fa129a44..9021023c63 100644 --- a/packages/core/docs/general/enterprise.md +++ b/packages/core/docs/general/enterprise.md @@ -9,7 +9,7 @@ Vue Storefront Enterprise is a commercial offering from the Vue Storefront core In Enterprise Edition you're getting everything that's in our open-source version. On top of that, we also provide: - access to [Vue Storefront Cloud](https://www.vuestorefront.io/cloud); -- additional [integrations](/integrations) with third-party services; +- additional [integrations](/integrations/) with third-party services; - extended integration with eCommerce platform with advanced features. Everything with badge in the documentation is only available for our Enterprise customers. diff --git a/packages/core/docs/general/installation.md b/packages/core/docs/general/installation.md index 9cc1b904e6..65c8324c86 100644 --- a/packages/core/docs/general/installation.md +++ b/packages/core/docs/general/installation.md @@ -36,7 +36,7 @@ npm install ### Step 3: Configure the project -The next step is to configure your project, and it's different for every e-commerce integration. Go to the [Integrations](/integrations) page, open the documentation for the integration you selected in our CLI, and look for the page describing the configuration steps. +The next step is to configure your project, and it's different for every e-commerce integration. Go to the [Integrations](/integrations/) page, open the documentation for the integration you selected in our CLI, and look for the page describing the configuration steps. ### Step 4: Start the project @@ -61,4 +61,4 @@ It speeds up the development of Vue.js-based applications by providing features ## What's next? -If you want to learn more, check out the [Introduction to Vue Storefront](/getting-started/introduction.html). You can also check the platform-specific documentation on the [Integrations](/integrations) page. +If you want to learn more, check out the [Introduction to Vue Storefront](/getting-started/introduction.html). You can also check the platform-specific documentation on the [Integrations](/integrations/) page. diff --git a/packages/core/docs/integrate/extending-vue-storefront.md b/packages/core/docs/integrate/extending-vue-storefront.md index 65aa82b720..a8496c157e 100644 --- a/packages/core/docs/integrate/extending-vue-storefront.md +++ b/packages/core/docs/integrate/extending-vue-storefront.md @@ -88,7 +88,7 @@ Integrations and extensions for Server Middleware are run only on the server. ### Server Middleware integrations -Server Middleware integrations connect Vue Storefront applications with other external services. For example, all eCommerce and CMS integrations listed on the [Integrations](/integrations) page are Server Middleware integrations. +Server Middleware integrations connect Vue Storefront applications with other external services. For example, all eCommerce and CMS integrations listed on the [Integrations](/integrations/) page are Server Middleware integrations. See the [Server Middleware](/architecture/server-middleware.html) page to learn more and [Integrating eCommerce platform](/integrate/integration-guide.html) page if you want to create your integration.