-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Merge latest `DivanteLtd/develop` into `develop` (#280, #289) * #196865 Add SEO-Text Component (#285) * #199077 Add `icmaa-cdn` module (#286) * #197501 Improve `SearchPanel` component (#284) * #187376 Bugfix for GTM tracking (#283) * #197501 Improve `SearchPanel` category results (#282) * Bugfix for build exception in Node v13.13+ (#287) * Add defaults to `sortedProductOptions` of `optionsMixin` in `icmaa-imp` theme (#290) * Add our custom filter to `SearchPanel` component for custom search (#281) * Bugfix for empty cms blocks in `icmaa-cms` block component (#292) * Remove unnecessary custom `api-search-query` search adapter
- Loading branch information
Showing
53 changed files
with
621 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[submodule "src/modules/vsf-cache-nginx"] | ||
path = src/modules/vsf-cache-nginx | ||
url = https://github.com/new-fantastic/vsf-cache-nginx.git | ||
branch = master | ||
[submodule "src/modules/vsf-cache-varnish"] | ||
path = src/modules/vsf-cache-varnish | ||
url = https://github.com/new-fantastic/vsf-cache-varnish.git | ||
branch = master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule vue-storefront
deleted from
3af5a1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# VSF Cache Fastly | ||
This module extends default caching docs/guide/basics/ssr-cache.md to allow using fastly as cache provider. | ||
|
||
## How to install | ||
Add to config: | ||
```json | ||
"fastly": { | ||
"enabled": true, | ||
"serviceId": "xyz", // (https://docs.fastly.com/en/guides/finding-and-managing-your-account-info#finding-your-service-id) | ||
"token": "xyz" // fastly api token (https://docs.fastly.com/api/auth#tokens) | ||
} | ||
``` | ||
|
||
Change those values in `server` section: | ||
```json | ||
"useOutputCacheTagging": true, | ||
"useOutputCache": true | ||
``` | ||
|
||
## How to purge cache? | ||
Open: | ||
``` | ||
http://localhost:3000/invalidate?key=aeSu7aip&tag=home | ||
``` |
Oops, something went wrong.