Skip to content
Discussion options

You must be logged in to vote

I found the root of this issue, this happens when registrering a plugins file in quasar.conf.js:

    boot: [
      {
        server: false,
        path: "plugins"
      }
    ],

when setting server value to false this issue happens. I solved it by separating the Vue component registeration into a separate file:

    boot: [
      {
        server: false,
        path: "plugins"
      },
      "server-plugins"
    ],

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by metalsadman
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant