Giovanni Manzoni
Giovanni Manzoni
> it not work for me: strategies: { local: false, graphql: { // custom scheme: '~/api/graphqlLogin', user: false, endpoints: { user: false } } }, and not work with: (...
I finaly solve it with this workaround: ( in comment on https://stackoverflow.com/questions/71816374/nuxt-auth-v5-not-setting-loggedin-when-use-login-logout ) const ret = await this.$auth.loginWith('graphql', credentials) if (ret) { await this.$auth.setUser(ret) this.$auth.$storage.setUniversal('loggedIn', true) // @fixme -- workaround...
nice :)
Hi, maybe this can help you if hmr is ignored: https://github.com/nuxt/nuxt/issues/12003#issuecomment-1939083966
**The final solution: open your mind and reflect on what you really need** After a week spent trying to get Nuxt3 working with SSL with Nginx for development.... I realized...
Hi, this is my definitive and working setup for Nuxt3 with vite and Nginx nuxt.config.js ``` server: { hmr: { protocol: 'wss', clientPort: 443, path: 'hmr/', }, }, ``` package.json...
New problem in Nuxt 3.10.1, last config from 3.8.x do not work anymore. my last problem after a lot configs was: SyntaxError: Failed to construct 'WebSocket': The URL 'wss://localhost:undefined/' is...
And what about enable ssr ? is it wrong or a good thing ?
I tried to increase token limit with this in .env file: FAST_TOKEN_LIMIT=16000 SMART_TOKEN_LIMIT=32000 but the chat crash with: openai.error.InvalidRequestError: This model's maximum context length is 4097 tokens. However, you requested...