We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Setup the required fields in .env file in root folder
// .env HTTP_ENDPOINT=https://your-endpoint WS_ENDPOINT=wss://your-endpoint
In index.vue the login process requires that the gql endpoint enables a mutation which returns a valid token:
index.vue
mutation authenticateUser($email:String!,$password:String!){ authenticateUser(email: $email, password: $password) { token id } }
If your gql backend is prepared start running nuxt as follow
# npm install # npm run dev
There was an error while loading. Please reload this page.