Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
filipsobol committed Mar 3, 2021
1 parent df3d9c7 commit 2f5ba94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/docs/migrate/2.3.0-rc.1/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ In short, it's meant to reduce the amount of code we send to the browser and per
Before, every request sent to the providers was made directly from the browser (besides the first visit on the page which is Server-Side Rendered), which meant that it had to have all the logic required to create and send the request and to process the response. In some cases browser had to load heavy libraries like GraphQL and have access to sensitive information, such as API keys.
This meant that Vue Storefront would not scale as well as we would like.

To fix these issues we moved most of the logic to the new API middleware. It's an Express server that lives beside Nuxt.js. It can be in parallel on the same server and separately on a different server, for better scalability.
To fix these issues we moved most of the logic to the new API middleware. It's an Express server that lives beside Nuxt.js. It can be run in parallel on the same server and separately on a different server, for better scalability.
Now, instead of making API calls directly to the provider, the browser will request data from the API middleware.

### Changes
Expand Down

0 comments on commit 2f5ba94

Please sign in to comment.