Skip to content
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Update eslint and fix code style. - @gibkigonzo (#4179 #4181)
- add missing cache tags for category and product - @gibkigonzo (#4173)
- add ssrAppId to avoid second meta render on csr - @gibkigonzo (#4203)

## [1.11.2] - 2020.03.10

Expand Down
4 changes: 3 additions & 1 deletion core/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ const createApp = async (ssrContext, config, storeCode = null): Promise<{app: Vu
once('__VUE_EXTEND__', () => {
Vue.use(Vuelidate)
Vue.use(VueLazyload, { attempt: 2, preLoad: 1.5 })
Vue.use(Meta)
Vue.use(Meta, {
ssrAppId: 1
})
Vue.use(VueObserveVisibility)

Object.keys(corePlugins).forEach(key => {
Expand Down