Skip to content

Commit

Permalink
fix: try to reorder plugin load order
Browse files Browse the repository at this point in the history
  • Loading branch information
AlejandroAkbal committed Jul 25, 2022
1 parent a766e55 commit 8256fb2
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,11 @@ export default {
components: [{ path: '~/components', pathPrefix: false }],

plugins: [
{ src: '~/plugins/pwa-update.js', mode: 'client' },
{ src: '~/plugins/vuex-persist.js', mode: 'client' },
{ src: '~/plugins/migrate-state.js', mode: 'client' },
{ src: '~/plugins/vuex-router-sync.js', mode: 'client' },
{ src: '~/plugins/vue-matomo.js', mode: 'client' }
{ src: '~/plugins/a.pwa-update.js', mode: 'client' },
{ src: '~/plugins/c.vuex-persist.js', mode: 'client' },
{ src: '~/plugins/e.vuex-router-sync.js', mode: 'client' },
{ src: '~/plugins/g.migrate-state.js', mode: 'client' },
{ src: '~/plugins/z.vue-matomo.js', mode: 'client' }
],

buildModules: [
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 8256fb2

Please sign in to comment.