Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix links to the Integrations page #6684

Merged
merged 1 commit into from
Mar 25, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/core/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion packages/core/docs/general/enterprise.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 text="Enterprise" type="info" /> badge in the documentation is only available for our Enterprise customers.
Expand Down
4 changes: 2 additions & 2 deletions packages/core/docs/general/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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.
2 changes: 1 addition & 1 deletion packages/core/docs/integrate/extending-vue-storefront.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down