diff --git a/CHANGELOG.md b/CHANGELOG.md index 20677a5c83..fe9bafd55c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/core/app.ts b/core/app.ts index c0d3649d86..8dfb969e19 100755 --- a/core/app.ts +++ b/core/app.ts @@ -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 => {